Skip to content

Latest commit

 

History

History
19 lines (18 loc) · 505 Bytes

git-hub-useful-cmd.md

File metadata and controls

19 lines (18 loc) · 505 Bytes

Some Useful Github CMD

1. git init

2. git clone

3. git add .

4. git commit -m "message"

5. git push

6. git pull upstream main

7. git stash

8. git stash pop

9. git stash clear

10. git restore --staged file_name

11. git reset

12. git remote add origin (url)

13. git merge branch_name

14. git fetch upstream

15. git merge upstream/master

16. git push origin master

17. git rebase master dev