大约有 2,878 项符合查询结果(耗时:0.0180秒) [XML]
What are the file limits in Git (number and size)?
Does anyone know what are the Git limits for number of files and size of files?
10 Answers
...
How do you rename a Git tag?
...
Here is how I rename a tag old to new:
git tag new old
git tag -d old
git push origin :refs/tags/old
git push --tags
The colon in the push command removes the tag from the remote repository. If you don't do this, Git will create the old tag on your machine when ...
How do I “undo” a --single-branch clone?
...
You can tell Git to pull all branches like this:
git config remote.origin.fetch "+refs/heads/*:refs/remotes/origin/*"
git fetch origin
If you look in .git/config, it'll look something like this:
[core]
repositoryformatversion = 0
...
How would I extract a single file (or changes to a file) from a git stash?
...o know if it is possible to extract a single file or diff of a file from a git stash without popping the stash changeset off.
...
How to generate a git patch for a specific commit?
...
Try:
git format-patch -1 <sha>
or
git format-patch -1 HEAD
According to the documentation link above, the -1 flag tells git how many commits should be included in the patch;
-<n>
Prepare patche...
Change first commit of project with Git? [duplicate]
...
As mentioned by ecdpalma below, git 1.7.12+ (August 2012) has enhanced the option --root for git rebase:
"git rebase [-i] --root $tip" can now be used to rewrite all the history leading to "$tip" down to the root commit.
That new behavior was initially di...
Staging Deleted files
Say I have a file in my git repository called foo .
9 Answers
9
...
git: undo all working dir changes including new files
...changes from working directory including new untracked files. I know that git checkout -f does that, but it doesn't delete new untracked files created since last commit.
...
What is the Git equivalent for revision number?
We use SVN at work, but for my personal projects I decided to use Git. So I installed Git yesterday, and I wonder what is the revision number equivalent in Git .
...
Push local Git repo to new remote including all branches and tags
I have a local Git repo that I would like to push to a new remote repo (brand new repo set up on Beanstalk, if that matters).
My local repo has a few branches and tags, and I would like to keep all of my history.
...