Reputation: 21
I am having an issue editing a mark down file and pushing it to the repo which I have created in Github. I have created a text file HelloWorld.md
and created a repo in Github. How do I edit the md file and push it to the repo in Github.
Upvotes: 1
Views: 3512
Reputation: 11
You can very easily with download this application
https://desktop.github.com/
first clone your remote repo
after add to changing markdown file in local repo
after press "commit to master" button in app
Upvotes: 0
Reputation: 40861
add
the file to the staging area with git add HelloWorld.md
commit
the file to your local repository with git commit -m "edit md"
push
the file to Github with git push origin master
Upvotes: 2