-
git : Git is a version control system; think of it as a series of snapshots (commits) of your code. You see a path of these snapshots, in which order they where created. You can make branches to experiment and come back to snapshots you took.
GitHub, is a web-page on which you can publish your Git repositories and collaborate with other people.
-
git checkout : Switch branches or restore working tree files
-
git add : Propose changes to INDEX(staging area)
-
git commit : Record changes to the repository/Commit the file to the HEAD(points to the last commit you've made), but not in remote repository yet
-
git pull : Update local repository to the newest commit to fetch and merge remote changes
-
git push : Update remote refs along with associated objects
-
git clone : Create a working copy of a local repository by running the command
-
git rebase : Forward-port local commits to the updated upstream head
-
git push -f : Update remote refs along with associated objects
-
git init : Create new repository
-
git-submodule : Initialize, update or inspect submodules git submodule init : Initialize all submodules for which "git submodule init" has not been called so far before updating.
forked from lindakeung/git_tutorial
-
Notifications
You must be signed in to change notification settings - Fork 0
jimcky/git_tutorial
Folders and files
Name | Name | Last commit message | Last commit date | |
---|---|---|---|---|
Repository files navigation
About
No description, website, or topics provided.
Resources
Stars
Watchers
Forks
Releases
No releases published
Packages 0
No packages published