大约有 2,878 项符合查询结果(耗时:0.0191秒) [XML]
How to “git clone” including submodules?
...
With version 2.13 of Git and later, --recurse-submodules can be used instead of --recursive:
git clone --recurse-submodules -j8 git://github.com/foo/bar.git
cd bar
Editor’s note: -j8 is an optional performance optimization that became availa...
Git and nasty “error: cannot lock existing info/refs fatal”
After cloning from remote git repository (at bettercodes)
I made some changes, commited
and tried to push:
23 Answers
...
How do I check out a remote Git branch?
Somebody pushed a branch called test with git push origin test to a shared repository. I can see the branch with git branch -r .
...
In plain English, what does “git reset” do?
I have seen interesting posts explaining subtleties about git reset .
7 Answers
7
...
Switch Git branch without files checkout
Is it possible in Git to switch to another branch without checking out all files?
11 Answers
...
How to extract a git subdirectory and make a submodule out of it?
...
Nowadays there's a much easier way to do it than manually using git filter-branch: git subtree
Installation
NOTE git-subtree is now part of git (if you install contrib) as of 1.7.11, so you might already have it installed. You may check by executing git subtree.
To install git-subtre...
Change date of git tag (or GitHub Release based on it)
I'm adding Releases to my projects on GitHub by adding tags to various commits in the Main branch.
3 Answers
...
How do I revert all local changes in Git managed project to previous state?
I have a project in which I ran git init .
After several commits, I did git status which told me everything was up to date and there were no local changes.
...
Checkout another branch when there are uncommitted changes on the current branch
Most of the time when I try to checkout another existing branch, Git doesn't allow me if I have some uncommitted changes on the current branch. So I'll have to commit or stash those changes first.
...
Is there a way to get the git root directory in one command?
...
Yes:
git rev-parse --show-toplevel
If you want to replicate the Git command more directly, you can create an alias:
git config --global alias.root 'rev-parse --show-toplevel'
and now git root will function just as hg root.
...