Last active
December 19, 2019 11:39
-
-
Save dev-w3/a6c62813485caa6b308b98db2b28148e to your computer and use it in GitHub Desktop.
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
git init | |
git config --list --show-origin | |
git config --global user.name 'dev-w3' | |
git config --global user.email '[email protected]' | |
git config --list | |
git remote add origin https://github.com/dev-w3/nodeone.git | |
git status | |
git add . | |
git stash | |
git commit -m "initial commit" | |
git push origin master | |
git log --oneline | |
git pull origin master | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Git basic commands