We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
To integrating HackMD with GitHub update your HackMD account Integration settings with your GitHub.
Integration
Information of Integrating HackMD with GitHub
Cost of Unlimited HackMD integration is under the Upgrade to Prime Plan:
Upgrade to Prime Plan
Integrating your obsidian vault to Github From @bryshalm
Based on this video: Backup you Obsidian Vault for free
Obsidian > Preferences > Community plugins >Browse > Obsidian Git by Vinzent > Install > Enable
C:\Users\brysh\Documents\Obsidian Vault
which git
git status
fatal: not a git repository for any of the parent directories ): .git
git init
git remote add origin [email protected]:<githubusername>/<github_vault_name.z>.git
git branch -M main
git push -u origin main
###Push to the Repo Once
git remote add origin [email protected]:<githubusername>/<github_vault_name.z>git
git push
git add <a_file_in_your_directory>
git commit -m 'initial commit'
[!warning] If it does not go through may need to generate a new token. To generate a new token go to settings in your GitHub account Go to Developer settings > Personal access tokens > Tokens (classic) Select the scopes (permissions) that your token requires. For cloning repositories, the "repo" scope is typically sufficient. Once you generate the token, make sure to copy and save it somewhere secure, as you won't be able to see it again. Do git push -u origin main again, but use the token as your password. Make sure git is configured, so you do not have to reenter username and password again To configure on Linux use: git config --global user.name "Github Username" git config --global user.email [email protected] After doing this, you may fix the identity used for this commit with: git commit --amend --reset-author
[!warning] If it does not go through may need to generate a new token.
git config --global user.name "Github Username" git config --global user.email [email protected]
After doing this, you may fix the identity used for this commit with:
git commit --amend --reset-author
Message Bry
The text was updated successfully, but these errors were encountered:
No branches or pull requests
HackMD
To integrating HackMD with GitHub update your HackMD account
Integration
settings with your GitHub.Cost of Unlimited HackMD integration is under the
![image](https://private-user-images.githubusercontent.com/63077899/303445605-3ed10fee-e786-47af-b6df-f14ab55bc58d.png?jwt=eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpc3MiOiJnaXRodWIuY29tIiwiYXVkIjoicmF3LmdpdGh1YnVzZXJjb250ZW50LmNvbSIsImtleSI6ImtleTUiLCJleHAiOjE3Mzk1MDAwMDAsIm5iZiI6MTczOTQ5OTcwMCwicGF0aCI6Ii82MzA3Nzg5OS8zMDM0NDU2MDUtM2VkMTBmZWUtZTc4Ni00N2FmLWI2ZGYtZjE0YWI1NWJjNThkLnBuZz9YLUFtei1BbGdvcml0aG09QVdTNC1ITUFDLVNIQTI1NiZYLUFtei1DcmVkZW50aWFsPUFLSUFWQ09EWUxTQTUzUFFLNFpBJTJGMjAyNTAyMTQlMkZ1cy1lYXN0LTElMkZzMyUyRmF3czRfcmVxdWVzdCZYLUFtei1EYXRlPTIwMjUwMjE0VDAyMjE0MFomWC1BbXotRXhwaXJlcz0zMDAmWC1BbXotU2lnbmF0dXJlPTgyNmUzZWI4NDk0NjdiZjA2NGFkMDQwYmQ4ZDAwMGVmOTczMzk4MDE3ZTdiYWFmN2M4MDRkYzU5NDllYTRmMjMmWC1BbXotU2lnbmVkSGVhZGVycz1ob3N0In0.rkl9Qh68iM8zU9h8soVSUA9ZaXo1N4jfEQ9plxN0HCI)
Upgrade to Prime Plan
:Obsidian
Integrating your obsidian vault to Github
From @bryshalm
Based on this video: Backup you Obsidian Vault for free
Install the Plugin
Obsidian > Preferences > Community plugins >Browse > Obsidian Git by Vinzent > Install > Enable
Make Sure Git is Installed
C:\Users\brysh\Documents\Obsidian Vault
which git
. If it come back with a file path, then git is installedInitialize a Repo
git status
fatal: not a git repository for any of the parent directories ): .git
you do not have a git repo yetgit init
to initialize an empty Git repositoryGet a Github Account
Create a Repo in Github
###Push to the Repo Once
git remote add origin [email protected]:<githubusername>/<github_vault_name.z>git
git branch -M main
git push
yet because we do not have any commits yetgit add <a_file_in_your_directory>
git status
, if you want to check that your add is stagedgit commit -m 'initial commit'
git push -u origin main
. This will push the commit to the Github repo. . . if everything goes rightConfigure the Plugin
Collapse
Message Bry
The text was updated successfully, but these errors were encountered: