I personally like VS Code but any will do:
I highly recommend you learn how to use Git Bash since it is industry standard. But either will work...
- Git Bash Cheat Sheet
- Git definitions
- Installation Video Its a bit lengthy but will teach you the basics
I recommend you create a GitHub folder on your pc to store all github repositories.
- To open Git Bash on windows right click and hit "open Git Bash here"
- To clone a repository got to the Github website and find the repo. Hit the clone button and copy the link then in Git Bash type:
git clone [Repo Name]- To pull changes cd to the repository and type:
git pull- To commit changes cd to the repository and type:
git commit -am"Your comment here"- To push changes to a repository (After you committed) type:
git push- To view all folders in the current directory type:
Mac/Linux
lsWindows
dir- To move to a sub directory type:
cd DirectoryNameHere- To move back a directory type:
cd ..