yau
Search:
Login
Preferences
Help/Guide
About Trac
Wiki
Timeline
Search
Tags
Blog
Context Navigation
←
Previous Change
Wiki History
Next Change
→
Restore Form
Changes between
Version 7
and
Version 8
of
notes/git
View differences
inline
side by side
Show
lines around each change
Show the changes in full context
Ignore:
Blank lines
Case changes
White space changes
Timestamp:
2018-01-08T12:30:49Z (
7 years
ago)
Author:
root
Comment:
--
Legend:
Unmodified
Added
Removed
Modified
notes/git
v7
v8
29
29
git fetch
30
30
}}}
31
32
== pull all branches to local
33
{{{#!bash
34
git branch -a |
35
sed -n \"/\\/HEAD /d; /\\/master$/d; /remotes/p;\" |
36
xargs -L1 git checkout -t"
37
}}}
38
39
== pull single branch to local
40
`git checkout -t remotes/origin/<branch_name>`