Git User Manual Git Cheat Sheet git - the simple guide - no deep shit! Git Hosting · Boxes: Your Second Python Book
Git - Book aashimaahuja/git-advanced
GIT GUIs Getting started with git gui on Windows — pydagogue 0.2 documentation Interfaces, frontends, and tools - Git SCM Wiki Git Force
# cross platform syntax (linux, win, mac)
git init # create new local dir repository
git status # get list of changes in project
git clone git://github.com/user/name.git <folder> # remote repository > local repository
git pull # changes made in remote repository > local repository
git status # show changes in local dir
git add <file> # local dir > staging area
git reset <file> # staging area > local dir
git commit -m “comment” # staging area > local repository
git push # local repository > remote repository
# initial settings:
git config --global user.name
git config --global user.email
git config --global core.autocrlf true/input
git config --global color.ui auto
# save credentials
git config --global credential.helper cache
Creating folders inside a GitHub repository without using Git - Stack Overflow
credentials - How can I save username and password in Git? - Stack Overflow
Synchronizing a local Git repository with a remote one - Stack Overflow