git push origin master code example
Example 1: git push command line
1. git init
2. git add .
3. git status
4. git commit -m 'your message'
5. git remote add origin 'your_url_name'
6. git push -u origin master //then login w/ your creds
Example 2: revert to master origin branch git
git checkout mybranch
git reset --hard origin/mybranch
Example 3: push code to github command line
git add .
git commit -m "message for the commit"
git remote add origin https://url-of-github-repo
git push origin master
Example 4: git push origin master --force
git push origin --force
Example 5: git push to branch
git push -u origin BRANCH
git push origin BRANCH
Example 6: git push
git clone https://github.com/<git-user>/<repo-name> && cd <repo-name>
git add <filename>
git commit -m "added some changes to my repo!"
git push origin master