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
https://levelup.gitconnected.com/15-git-commands-you-should-learn-before-your-very-first-project-f8eebb8dc6e9 | |
https://www.freecodecamp.org/news/learn-the-basics-of-git-in-under-10-minutes-da548267cc91/ | |
https://www.freecodecamp.org/news/7-git-commands-you-might-not-know/ | |
SETUP USER: | |
If one github account needs to setup all of the branches the commands can do that job. | |
git config --global user.email "[email protected]" | |
git config --global user.name "yourGitHubusername" | |
If a specific github account need to be setup for specific git repo we just need to ommit --global in the command |
NewerOlder