2013-07-16 03:11:37 +04:00
|
|
|
|
---
|
2013-07-22 03:47:55 +04:00
|
|
|
|
category: tool
|
|
|
|
|
tool: git
|
2013-07-16 03:11:37 +04:00
|
|
|
|
contributors:
|
2013-08-28 08:23:09 +04:00
|
|
|
|
- ["Jake Prather", "http://github.com/JakeHP"]
|
2014-11-25 04:44:25 +03:00
|
|
|
|
- ["Leo Rudberg" , "http://github.com/LOZORD"]
|
|
|
|
|
- ["Betsy Lorton" , "http://github.com/schbetsy"]
|
2015-10-13 17:26:26 +03:00
|
|
|
|
- ["Bruno Volcov", "http://github.com/volcov"]
|
2013-07-16 03:11:37 +04:00
|
|
|
|
filename: LearnGit.txt
|
|
|
|
|
---
|
|
|
|
|
|
2015-10-05 22:14:05 +03:00
|
|
|
|
Git is a distributed version control and source code management system.
|
2013-07-16 03:11:37 +04:00
|
|
|
|
|
2015-10-05 22:14:05 +03:00
|
|
|
|
It does this through a series of snapshots of your project, and it works
|
|
|
|
|
with those snapshots to provide you with functionality to version and
|
2013-07-16 03:11:37 +04:00
|
|
|
|
manage your source code.
|
|
|
|
|
|
2013-07-22 03:47:55 +04:00
|
|
|
|
## Versioning Concepts
|
|
|
|
|
|
|
|
|
|
### What is version control?
|
|
|
|
|
|
2015-10-05 22:14:05 +03:00
|
|
|
|
Version control is a system that records changes to a file(s), over time.
|
2013-07-22 03:47:55 +04:00
|
|
|
|
|
|
|
|
|
### Centralized Versioning VS Distributed Versioning
|
|
|
|
|
|
|
|
|
|
* Centralized version control focuses on synchronizing, tracking, and backing up files.
|
|
|
|
|
* Distributed version control focuses on sharing changes. Every change has a unique id.
|
|
|
|
|
* Distributed systems have no defined structure. You could easily have a SVN style, centralized system, with git.
|
|
|
|
|
|
2013-07-23 01:09:33 +04:00
|
|
|
|
[Additional Information](http://git-scm.com/book/en/Getting-Started-About-Version-Control)
|
2013-07-22 03:47:55 +04:00
|
|
|
|
|
|
|
|
|
### Why Use Git?
|
|
|
|
|
|
|
|
|
|
* Can work offline.
|
|
|
|
|
* Collaborating with others is easy!
|
|
|
|
|
* Branching is easy!
|
|
|
|
|
* Merging is easy!
|
|
|
|
|
* Git is fast.
|
|
|
|
|
* Git is flexible.
|
|
|
|
|
|
|
|
|
|
## Git Architecture
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
### Repository
|
|
|
|
|
|
2015-10-05 22:14:05 +03:00
|
|
|
|
A set of files, directories, historical records, commits, and heads. Imagine it
|
|
|
|
|
as a source code data structure, with the attribute that each source code
|
|
|
|
|
"element" gives you access to its revision history, among other things.
|
2013-07-22 03:47:55 +04:00
|
|
|
|
|
|
|
|
|
A git repository is comprised of the .git directory & working tree.
|
|
|
|
|
|
|
|
|
|
### .git Directory (component of repository)
|
|
|
|
|
|
|
|
|
|
The .git directory contains all the configurations, logs, branches, HEAD, and more.
|
2013-07-23 01:09:33 +04:00
|
|
|
|
[Detailed List.](http://gitready.com/advanced/2009/03/23/whats-inside-your-git-directory.html)
|
2013-07-22 03:47:55 +04:00
|
|
|
|
|
|
|
|
|
### Working Tree (component of repository)
|
|
|
|
|
|
2015-10-05 22:14:05 +03:00
|
|
|
|
This is basically the directories and files in your repository. It is often
|
|
|
|
|
referred to as your working directory.
|
2013-07-22 03:47:55 +04:00
|
|
|
|
|
|
|
|
|
### Index (component of .git dir)
|
|
|
|
|
|
2013-07-23 01:09:33 +04:00
|
|
|
|
The Index is the staging area in git. It's basically a layer that separates your working tree
|
2015-10-05 22:14:05 +03:00
|
|
|
|
from the Git repository. This gives developers more power over what gets sent
|
|
|
|
|
to the Git repository.
|
2013-07-22 03:47:55 +04:00
|
|
|
|
|
|
|
|
|
### Commit
|
|
|
|
|
|
2015-10-05 22:14:05 +03:00
|
|
|
|
A git commit is a snapshot of a set of changes, or manipulations to your Working
|
|
|
|
|
Tree. For example, if you added 5 files, and removed 2 others, these changes
|
|
|
|
|
will be contained in a commit (or snapshot). This commit can then be pushed to
|
|
|
|
|
other repositories, or not!
|
2013-07-22 03:47:55 +04:00
|
|
|
|
|
|
|
|
|
### Branch
|
|
|
|
|
|
2015-10-05 22:14:05 +03:00
|
|
|
|
A branch is essentially a pointer to the last commit you made. As you go on
|
2015-10-05 22:36:15 +03:00
|
|
|
|
committing, this pointer will automatically update to point the latest commit.
|
2013-07-22 03:47:55 +04:00
|
|
|
|
|
2015-10-13 17:26:26 +03:00
|
|
|
|
### Tag
|
|
|
|
|
|
|
|
|
|
A tag is a mark on specific point in history. Typically people use this
|
|
|
|
|
functionality to mark release points (v1.0, and so on)
|
|
|
|
|
|
2013-07-22 03:47:55 +04:00
|
|
|
|
### HEAD and head (component of .git dir)
|
|
|
|
|
|
2013-07-23 01:09:33 +04:00
|
|
|
|
HEAD is a pointer that points to the current branch. A repository only has 1 *active* HEAD.
|
|
|
|
|
head is a pointer that points to any commit. A repository can have any number of heads.
|
2013-07-22 03:47:55 +04:00
|
|
|
|
|
2015-10-05 22:14:05 +03:00
|
|
|
|
### Stages of Git
|
2015-06-01 21:16:04 +03:00
|
|
|
|
* Modified - Changes have been made to a file but file has not been committed to Git Database yet
|
|
|
|
|
* Staged - Marks a modified file to go into your next commit snapshot
|
2015-06-03 00:32:38 +03:00
|
|
|
|
* Committed - Files have been committed to the Git Database
|
2015-06-01 21:16:04 +03:00
|
|
|
|
|
2013-07-22 03:47:55 +04:00
|
|
|
|
### Conceptual Resources
|
|
|
|
|
|
2013-07-23 01:09:33 +04:00
|
|
|
|
* [Git For Computer Scientists](http://eagain.net/articles/git-for-computer-scientists/)
|
|
|
|
|
* [Git For Designers](http://hoth.entp.com/output/git_for_designers.html)
|
2013-07-22 03:47:55 +04:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
## Commands
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
### init
|
|
|
|
|
|
2015-10-05 22:14:05 +03:00
|
|
|
|
Create an empty Git repository. The Git repository's settings, stored information,
|
2013-07-23 01:09:33 +04:00
|
|
|
|
and more is stored in a directory (a folder) named ".git".
|
2013-07-22 03:47:55 +04:00
|
|
|
|
|
|
|
|
|
```bash
|
|
|
|
|
$ git init
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
### config
|
|
|
|
|
|
2015-10-05 22:26:08 +03:00
|
|
|
|
To configure settings. Whether it be for the repository, the system itself,
|
|
|
|
|
or global configurations ( global config file is `~/.gitconfig` ).
|
2013-07-22 03:47:55 +04:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
```bash
|
|
|
|
|
# Print & Set Some Basic Config Variables (Global)
|
|
|
|
|
$ git config --global user.email "MyEmail@Zoho.com"
|
|
|
|
|
$ git config --global user.name "My Name"
|
|
|
|
|
```
|
|
|
|
|
|
2013-07-23 01:09:33 +04:00
|
|
|
|
[Learn More About git config.](http://git-scm.com/docs/git-config)
|
2013-07-22 03:47:55 +04:00
|
|
|
|
|
|
|
|
|
### help
|
|
|
|
|
|
2013-07-23 01:09:33 +04:00
|
|
|
|
To give you quick access to an extremely detailed guide of each command. Or to
|
2013-07-22 03:47:55 +04:00
|
|
|
|
just give you a quick reminder of some semantics.
|
|
|
|
|
|
|
|
|
|
```bash
|
|
|
|
|
# Quickly check available commands
|
|
|
|
|
$ git help
|
|
|
|
|
|
|
|
|
|
# Check all available commands
|
|
|
|
|
$ git help -a
|
|
|
|
|
|
|
|
|
|
# Command specific help - user manual
|
|
|
|
|
# git help <command_here>
|
|
|
|
|
$ git help add
|
|
|
|
|
$ git help commit
|
|
|
|
|
$ git help init
|
2015-06-01 21:16:04 +03:00
|
|
|
|
# or git <command_here> --help
|
|
|
|
|
$ git add --help
|
|
|
|
|
$ git commit --help
|
|
|
|
|
$ git init --help
|
2013-07-22 03:47:55 +04:00
|
|
|
|
```
|
|
|
|
|
|
2015-10-05 22:36:15 +03:00
|
|
|
|
### ignore files
|
2015-10-05 22:15:40 +03:00
|
|
|
|
|
|
|
|
|
To intentionally untrack file(s) & folder(s) from git. Typically meant for
|
|
|
|
|
private & temp files which would otherwise be shared in the repository.
|
|
|
|
|
```bash
|
|
|
|
|
$ echo "temp/" >> .gitignore
|
|
|
|
|
$ echo "private_key" >> .gitignore
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
|
2013-07-22 03:47:55 +04:00
|
|
|
|
### status
|
|
|
|
|
|
2015-10-05 22:14:05 +03:00
|
|
|
|
To show differences between the index file (basically your working copy/repo)
|
|
|
|
|
and the current HEAD commit.
|
2013-07-22 03:47:55 +04:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
```bash
|
|
|
|
|
# Will display the branch, untracked files, changes and other differences
|
|
|
|
|
$ git status
|
|
|
|
|
|
|
|
|
|
# To learn other "tid bits" about git status
|
|
|
|
|
$ git help status
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
### add
|
|
|
|
|
|
2015-06-01 21:16:04 +03:00
|
|
|
|
To add files to the staging area/index. If you do not `git add` new files to the
|
|
|
|
|
staging area/index, they will not be included in commits!
|
2013-07-22 03:47:55 +04:00
|
|
|
|
|
|
|
|
|
```bash
|
|
|
|
|
# add a file in your current working directory
|
|
|
|
|
$ git add HelloWorld.java
|
|
|
|
|
|
|
|
|
|
# add a file in a nested dir
|
|
|
|
|
$ git add /path/to/file/HelloWorld.c
|
|
|
|
|
|
|
|
|
|
# Regular Expression support!
|
|
|
|
|
$ git add ./*.java
|
|
|
|
|
```
|
|
|
|
|
|
2015-10-05 22:14:05 +03:00
|
|
|
|
This only adds a file to the staging area/index, it doesn't commit it to the
|
|
|
|
|
working directory/repo.
|
2015-06-01 21:16:04 +03:00
|
|
|
|
|
2013-07-22 03:47:55 +04:00
|
|
|
|
### branch
|
|
|
|
|
|
|
|
|
|
Manage your branches. You can view, edit, create, delete branches using this command.
|
|
|
|
|
|
|
|
|
|
```bash
|
|
|
|
|
# list existing branches & remotes
|
|
|
|
|
$ git branch -a
|
|
|
|
|
|
|
|
|
|
# create a new branch
|
|
|
|
|
$ git branch myNewBranch
|
|
|
|
|
|
|
|
|
|
# delete a branch
|
|
|
|
|
$ git branch -d myBranch
|
|
|
|
|
|
|
|
|
|
# rename a branch
|
|
|
|
|
# git branch -m <oldname> <newname>
|
|
|
|
|
$ git branch -m myBranchName myNewBranchName
|
|
|
|
|
|
|
|
|
|
# edit a branch's description
|
|
|
|
|
$ git branch myBranchName --edit-description
|
|
|
|
|
```
|
|
|
|
|
|
2015-10-13 17:26:26 +03:00
|
|
|
|
### tag
|
|
|
|
|
|
|
|
|
|
Manage your tags
|
|
|
|
|
|
|
|
|
|
```bash
|
|
|
|
|
# List tags
|
|
|
|
|
$ git tag
|
|
|
|
|
# Create a annotated tag
|
|
|
|
|
# The -m specifies a tagging message,which is stored with the tag.
|
|
|
|
|
# If you don’t specify a message for an annotated tag,
|
|
|
|
|
# Git launches your editor so you can type it in.
|
|
|
|
|
$ git tag -a v2.0 -m 'my version 2.0'
|
|
|
|
|
# Show info about tag
|
|
|
|
|
# That shows the tagger information, the date the commit was tagged,
|
|
|
|
|
# and the annotation message before showing the commit information.
|
|
|
|
|
$ git show v2.0
|
|
|
|
|
# Push a single tag to remote
|
|
|
|
|
$ git push origin v2.0
|
|
|
|
|
# Push a lot of tags to remote
|
|
|
|
|
$ git push origin --tags
|
|
|
|
|
```
|
|
|
|
|
|
2013-07-22 03:47:55 +04:00
|
|
|
|
### checkout
|
|
|
|
|
|
|
|
|
|
Updates all files in the working tree to match the version in the index, or specified tree.
|
|
|
|
|
|
|
|
|
|
```bash
|
|
|
|
|
# Checkout a repo - defaults to master branch
|
|
|
|
|
$ git checkout
|
|
|
|
|
# Checkout a specified branch
|
2013-07-23 01:09:33 +04:00
|
|
|
|
$ git checkout branchName
|
2015-10-05 22:14:05 +03:00
|
|
|
|
# Create a new branch & switch to it
|
|
|
|
|
# equivalent to "git branch <name>; git checkout <name>"
|
2013-07-23 01:09:33 +04:00
|
|
|
|
$ git checkout -b newBranch
|
2013-07-22 03:47:55 +04:00
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
### clone
|
|
|
|
|
|
2013-07-23 01:09:33 +04:00
|
|
|
|
Clones, or copies, an existing repository into a new directory. It also adds
|
|
|
|
|
remote-tracking branches for each branch in the cloned repo, which allows you to push
|
|
|
|
|
to a remote branch.
|
2013-07-22 03:47:55 +04:00
|
|
|
|
|
|
|
|
|
```bash
|
|
|
|
|
# Clone learnxinyminutes-docs
|
2013-07-23 01:09:33 +04:00
|
|
|
|
$ git clone https://github.com/adambard/learnxinyminutes-docs.git
|
2015-10-05 22:16:53 +03:00
|
|
|
|
# shallow clone - faster cloning that pulls only latest snapshot
|
|
|
|
|
$ git clone --depth 1 https://github.com/adambard/learnxinyminutes-docs.git
|
|
|
|
|
# clone only a specific branch
|
|
|
|
|
$ git clone -b master-cn https://github.com/adambard/learnxinyminutes-docs.git --single-branch
|
2013-07-22 03:47:55 +04:00
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
### commit
|
|
|
|
|
|
2013-07-23 01:09:33 +04:00
|
|
|
|
Stores the current contents of the index in a new "commit." This commit contains
|
2013-07-22 03:47:55 +04:00
|
|
|
|
the changes made and a message created by the user.
|
|
|
|
|
|
|
|
|
|
```bash
|
|
|
|
|
# commit with a message
|
|
|
|
|
$ git commit -m "Added multiplyNumbers() function to HelloWorld.c"
|
2015-03-04 19:30:00 +03:00
|
|
|
|
|
|
|
|
|
# automatically stage modified or deleted files, except new files, and then commit
|
|
|
|
|
$ git commit -a -m "Modified foo.php and removed bar.php"
|
2015-10-05 22:26:08 +03:00
|
|
|
|
|
|
|
|
|
# change last commit (this deletes previous commit with a fresh commit)
|
|
|
|
|
$ git commit --amend -m "Correct message"
|
2013-07-22 03:47:55 +04:00
|
|
|
|
```
|
|
|
|
|
|
2013-07-22 04:12:40 +04:00
|
|
|
|
### diff
|
|
|
|
|
|
|
|
|
|
Shows differences between a file in the working directory, index and commits.
|
|
|
|
|
|
|
|
|
|
```bash
|
|
|
|
|
# Show difference between your working dir and the index
|
|
|
|
|
$ git diff
|
|
|
|
|
|
|
|
|
|
# Show differences between the index and the most recent commit.
|
|
|
|
|
$ git diff --cached
|
|
|
|
|
|
2013-07-23 01:09:33 +04:00
|
|
|
|
# Show differences between your working dir and the most recent commit
|
2013-07-22 04:12:40 +04:00
|
|
|
|
$ git diff HEAD
|
|
|
|
|
```
|
|
|
|
|
|
2013-07-22 03:47:55 +04:00
|
|
|
|
### grep
|
|
|
|
|
|
|
|
|
|
Allows you to quickly search a repository.
|
|
|
|
|
|
|
|
|
|
Optional Configurations:
|
|
|
|
|
|
|
|
|
|
```bash
|
|
|
|
|
# Thanks to Travis Jeffery for these
|
|
|
|
|
# Set line numbers to be shown in grep search results
|
|
|
|
|
$ git config --global grep.lineNumber true
|
|
|
|
|
|
|
|
|
|
# Make search results more readable, including grouping
|
|
|
|
|
$ git config --global alias.g "grep --break --heading --line-number"
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
```bash
|
|
|
|
|
# Search for "variableName" in all java files
|
|
|
|
|
$ git grep 'variableName' -- '*.java'
|
|
|
|
|
|
|
|
|
|
# Search for a line that contains "arrayListName" and, "add" or "remove"
|
2015-10-05 22:14:05 +03:00
|
|
|
|
$ git grep -e 'arrayListName' --and \( -e add -e remove \)
|
2013-07-16 03:11:37 +04:00
|
|
|
|
```
|
|
|
|
|
|
2013-07-23 01:09:33 +04:00
|
|
|
|
Google is your friend; for more examples
|
|
|
|
|
[Git Grep Ninja](http://travisjeffery.com/b/2012/02/search-a-git-repo-like-a-ninja)
|
2013-07-22 03:47:55 +04:00
|
|
|
|
|
|
|
|
|
### log
|
|
|
|
|
|
|
|
|
|
Display commits to the repository.
|
|
|
|
|
|
|
|
|
|
```bash
|
|
|
|
|
# Show all commits
|
|
|
|
|
$ git log
|
|
|
|
|
|
2015-10-05 22:26:08 +03:00
|
|
|
|
# Show only commit message & ref
|
|
|
|
|
$ git log --oneline
|
2013-07-22 03:47:55 +04:00
|
|
|
|
|
|
|
|
|
# Show merge commits only
|
|
|
|
|
$ git log --merges
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
### merge
|
|
|
|
|
|
2013-07-23 01:09:33 +04:00
|
|
|
|
"Merge" in changes from external commits into the current branch.
|
2013-07-22 03:47:55 +04:00
|
|
|
|
|
|
|
|
|
```bash
|
|
|
|
|
# Merge the specified branch into the current.
|
|
|
|
|
$ git merge branchName
|
|
|
|
|
|
|
|
|
|
# Always generate a merge commit when merging
|
|
|
|
|
$ git merge --no-ff branchName
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
### mv
|
|
|
|
|
|
2015-10-05 22:14:05 +03:00
|
|
|
|
Rename or move a file
|
2013-07-22 03:47:55 +04:00
|
|
|
|
|
|
|
|
|
```bash
|
|
|
|
|
# Renaming a file
|
|
|
|
|
$ git mv HelloWorld.c HelloNewWorld.c
|
|
|
|
|
|
|
|
|
|
# Moving a file
|
|
|
|
|
$ git mv HelloWorld.c ./new/path/HelloWorld.c
|
|
|
|
|
|
|
|
|
|
# Force rename or move
|
|
|
|
|
# "existingFile" already exists in the directory, will be overwritten
|
|
|
|
|
$ git mv -f myFile existingFile
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
### pull
|
|
|
|
|
|
|
|
|
|
Pulls from a repository and merges it with another branch.
|
|
|
|
|
|
|
|
|
|
```bash
|
|
|
|
|
# Update your local repo, by merging in new changes
|
|
|
|
|
# from the remote "origin" and "master" branch.
|
|
|
|
|
# git pull <remote> <branch>
|
2013-08-08 20:38:06 +04:00
|
|
|
|
# git pull => implicitly defaults to => git pull origin master
|
2013-07-22 03:47:55 +04:00
|
|
|
|
$ git pull origin master
|
2013-08-08 20:38:06 +04:00
|
|
|
|
|
|
|
|
|
# Merge in changes from remote branch and rebase
|
|
|
|
|
# branch commits onto your local repo, like: "git pull <remote> <branch>, git rebase <branch>"
|
|
|
|
|
$ git pull origin master --rebase
|
2013-07-22 03:47:55 +04:00
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
### push
|
|
|
|
|
|
2013-07-23 01:09:33 +04:00
|
|
|
|
Push and merge changes from a branch to a remote & branch.
|
2013-07-22 03:47:55 +04:00
|
|
|
|
|
|
|
|
|
```bash
|
2015-10-05 22:14:05 +03:00
|
|
|
|
# Push and merge changes from a local repo to a
|
2013-07-22 03:47:55 +04:00
|
|
|
|
# remote named "origin" and "master" branch.
|
|
|
|
|
# git push <remote> <branch>
|
|
|
|
|
# git push => implicitly defaults to => git push origin master
|
|
|
|
|
$ git push origin master
|
2014-06-03 20:40:06 +04:00
|
|
|
|
|
|
|
|
|
# To link up current local branch with a remote branch, add -u flag:
|
|
|
|
|
$ git push -u origin master
|
|
|
|
|
# Now, anytime you want to push from that same local branch, use shortcut:
|
2015-10-05 22:14:05 +03:00
|
|
|
|
$ git push
|
2013-07-22 03:47:55 +04:00
|
|
|
|
```
|
|
|
|
|
|
2014-11-25 04:32:40 +03:00
|
|
|
|
### stash
|
|
|
|
|
|
2015-10-05 22:14:05 +03:00
|
|
|
|
Stashing takes the dirty state of your working directory and saves it on a stack
|
|
|
|
|
of unfinished changes that you can reapply at any time.
|
2014-11-25 04:32:40 +03:00
|
|
|
|
|
2015-10-05 22:14:05 +03:00
|
|
|
|
Let's say you've been doing some work in your git repo, but you want to pull
|
|
|
|
|
from the remote. Since you have dirty (uncommited) changes to some files, you
|
|
|
|
|
are not able to run `git pull`. Instead, you can run `git stash` to save your
|
|
|
|
|
changes onto a stack!
|
2014-11-25 04:32:40 +03:00
|
|
|
|
|
2014-11-25 04:39:44 +03:00
|
|
|
|
```bash
|
2014-11-25 04:32:40 +03:00
|
|
|
|
$ git stash
|
|
|
|
|
Saved working directory and index state \
|
|
|
|
|
"WIP on master: 049d078 added the index file"
|
|
|
|
|
HEAD is now at 049d078 added the index file
|
2015-10-05 22:14:05 +03:00
|
|
|
|
(To restore them type "git stash apply")
|
2014-11-25 04:39:44 +03:00
|
|
|
|
```
|
2014-11-25 04:32:40 +03:00
|
|
|
|
|
2014-11-25 04:39:44 +03:00
|
|
|
|
Now you can pull!
|
2014-11-25 22:47:03 +03:00
|
|
|
|
|
2014-11-25 04:39:44 +03:00
|
|
|
|
```bash
|
2014-11-25 04:32:40 +03:00
|
|
|
|
git pull
|
2014-11-25 04:39:44 +03:00
|
|
|
|
```
|
2014-11-25 22:47:03 +03:00
|
|
|
|
`...changes apply...`
|
2014-11-25 04:32:40 +03:00
|
|
|
|
|
2014-11-25 04:39:44 +03:00
|
|
|
|
Now check that everything is OK
|
2014-11-25 04:32:40 +03:00
|
|
|
|
|
2014-11-25 04:39:44 +03:00
|
|
|
|
```bash
|
2014-11-25 04:32:40 +03:00
|
|
|
|
$ git status
|
|
|
|
|
# On branch master
|
|
|
|
|
nothing to commit, working directory clean
|
2014-11-25 04:39:44 +03:00
|
|
|
|
```
|
2014-11-25 04:32:40 +03:00
|
|
|
|
|
2014-11-25 22:47:03 +03:00
|
|
|
|
You can see what "hunks" you've stashed so far using `git stash list`.
|
|
|
|
|
Since the "hunks" are stored in a Last-In-First-Out stack, our most recent change will be at top.
|
|
|
|
|
|
2014-11-25 04:39:44 +03:00
|
|
|
|
```bash
|
2014-11-25 04:32:40 +03:00
|
|
|
|
$ git stash list
|
|
|
|
|
stash@{0}: WIP on master: 049d078 added the index file
|
|
|
|
|
stash@{1}: WIP on master: c264051 Revert "added file_size"
|
|
|
|
|
stash@{2}: WIP on master: 21d80a5 added number to log
|
2014-11-25 04:39:44 +03:00
|
|
|
|
```
|
2014-11-25 04:32:40 +03:00
|
|
|
|
|
2014-11-25 22:47:03 +03:00
|
|
|
|
Now let's apply our dirty changes back by popping them off the stack.
|
|
|
|
|
|
2014-11-25 04:39:44 +03:00
|
|
|
|
```bash
|
2014-11-25 04:32:40 +03:00
|
|
|
|
$ git stash pop
|
|
|
|
|
# On branch master
|
|
|
|
|
# Changes not staged for commit:
|
|
|
|
|
# (use "git add <file>..." to update what will be committed)
|
|
|
|
|
#
|
|
|
|
|
# modified: index.html
|
|
|
|
|
# modified: lib/simplegit.rb
|
|
|
|
|
#
|
2014-11-25 04:39:44 +03:00
|
|
|
|
```
|
2014-11-25 22:47:03 +03:00
|
|
|
|
|
2014-11-25 04:41:02 +03:00
|
|
|
|
`git stash apply` does the same thing
|
2014-11-25 04:32:40 +03:00
|
|
|
|
|
2014-11-25 04:39:44 +03:00
|
|
|
|
Now you're ready to get back to work on your stuff!
|
2014-11-25 04:41:02 +03:00
|
|
|
|
|
2014-11-25 04:32:40 +03:00
|
|
|
|
[Additional Reading.](http://git-scm.com/book/en/v1/Git-Tools-Stashing)
|
|
|
|
|
|
2015-10-05 22:14:05 +03:00
|
|
|
|
### rebase (caution)
|
2013-07-22 03:47:55 +04:00
|
|
|
|
|
|
|
|
|
Take all changes that were committed on one branch, and replay them onto another branch.
|
2013-07-23 01:09:33 +04:00
|
|
|
|
*Do not rebase commits that you have pushed to a public repo*.
|
2013-07-22 03:47:55 +04:00
|
|
|
|
|
|
|
|
|
```bash
|
|
|
|
|
# Rebase experimentBranch onto master
|
|
|
|
|
# git rebase <basebranch> <topicbranch>
|
2013-07-23 01:09:33 +04:00
|
|
|
|
$ git rebase master experimentBranch
|
2013-07-22 03:47:55 +04:00
|
|
|
|
```
|
|
|
|
|
|
2013-07-23 01:09:33 +04:00
|
|
|
|
[Additional Reading.](http://git-scm.com/book/en/Git-Branching-Rebasing)
|
2013-07-22 03:47:55 +04:00
|
|
|
|
|
|
|
|
|
### reset (caution)
|
|
|
|
|
|
|
|
|
|
Reset the current HEAD to the specified state. This allows you to undo merges,
|
|
|
|
|
pulls, commits, adds, and more. It's a great command but also dangerous if you don't
|
|
|
|
|
know what you are doing.
|
|
|
|
|
|
|
|
|
|
```bash
|
|
|
|
|
# Reset the staging area, to match the latest commit (leaves dir unchanged)
|
|
|
|
|
$ git reset
|
|
|
|
|
|
|
|
|
|
# Reset the staging area, to match the latest commit, and overwrite working dir
|
|
|
|
|
$ git reset --hard
|
|
|
|
|
|
|
|
|
|
# Moves the current branch tip to the specified commit (leaves dir unchanged)
|
|
|
|
|
# all changes still exist in the directory.
|
|
|
|
|
$ git reset 31f2bb1
|
|
|
|
|
|
|
|
|
|
# Moves the current branch tip backward to the specified commit
|
|
|
|
|
# and makes the working dir match (deletes uncommited changes and all commits
|
|
|
|
|
# after the specified commit).
|
|
|
|
|
$ git reset --hard 31f2bb1
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
### rm
|
|
|
|
|
|
|
|
|
|
The opposite of git add, git rm removes files from the current working tree.
|
2013-07-16 03:11:37 +04:00
|
|
|
|
|
2013-07-22 03:47:55 +04:00
|
|
|
|
```bash
|
|
|
|
|
# remove HelloWorld.c
|
|
|
|
|
$ git rm HelloWorld.c
|
2013-07-16 03:11:37 +04:00
|
|
|
|
|
2013-07-22 03:47:55 +04:00
|
|
|
|
# Remove a file from a nested dir
|
|
|
|
|
$ git rm /pather/to/the/file/HelloWorld.c
|
2013-07-16 03:11:37 +04:00
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
## Further Information
|
|
|
|
|
|
2013-07-23 01:09:33 +04:00
|
|
|
|
* [tryGit - A fun interactive way to learn Git.](http://try.github.io/levels/1/challenges/1)
|
2013-07-16 03:11:37 +04:00
|
|
|
|
|
2015-09-19 19:07:26 +03:00
|
|
|
|
* [Udemy Git Tutorial: A Comprehensive Guide](https://blog.udemy.com/git-tutorial-a-comprehensive-guide/)
|
|
|
|
|
|
2015-10-09 02:18:07 +03:00
|
|
|
|
* [Git Immersion - A Guided tour that walks through the fundamentals of git](http://gitimmersion.com/)
|
|
|
|
|
|
2013-07-23 01:09:33 +04:00
|
|
|
|
* [git-scm - Video Tutorials](http://git-scm.com/videos)
|
2013-07-16 03:11:37 +04:00
|
|
|
|
|
2013-07-23 01:09:33 +04:00
|
|
|
|
* [git-scm - Documentation](http://git-scm.com/docs)
|
2013-07-16 03:11:37 +04:00
|
|
|
|
|
2013-07-23 01:09:33 +04:00
|
|
|
|
* [Atlassian Git - Tutorials & Workflows](https://www.atlassian.com/git/)
|
2013-07-16 03:11:37 +04:00
|
|
|
|
|
2013-07-23 01:09:33 +04:00
|
|
|
|
* [SalesForce Cheat Sheet](https://na1.salesforce.com/help/doc/en/salesforce_git_developer_cheatsheet.pdf)
|
2013-07-16 21:53:24 +04:00
|
|
|
|
|
2013-07-22 04:12:40 +04:00
|
|
|
|
* [GitGuys](http://www.gitguys.com/)
|
2014-06-14 08:28:20 +04:00
|
|
|
|
|
2014-11-25 04:32:40 +03:00
|
|
|
|
* [Git - the simple guide](http://rogerdudler.github.io/git-guide/index.html)
|
2015-06-01 21:16:04 +03:00
|
|
|
|
|
|
|
|
|
* [Pro Git](http://www.git-scm.com/book/en/v2)
|