Last active
June 29, 2020 02:02
-
-
Save rakibulinux/09ba3148dd9aaefc8d3d4cce89cbf020 to your computer and use it in GitHub Desktop.
How to update GitHub Site
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/sh | |
| sudo git init | |
| sudo git add . | |
| sudo git commit -m "first commit" | |
| sudo git push -u origin master | |
| git status | |
| git log | |
| git rm file name | |
| git branch | |
| git branch brancename | |
| git checkout brancename |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment