Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

121
votes
2answers
37k views

Difference of “git add -A” and “git add .”

The command git add [--all|-A] appears to be identical to git add .. Is this correct? If not, how do they differ?
11
votes
1answer
1k views

Untangle two lines with `git add -p`

I've got a file with the following changes: # Manual hunk edit mode -- see bottom for a quick guide @@ -280,6 +281,7 @@ if( foo ) { bla(); - test( true ); + removeThis(); + test( ...
9
votes
5answers
16k views

git: How do I recursively add all files in a directory subtree that match a glob pattern?

I have several .screen files inside /xxx/documentation and its subdirectories that are already tracked by Git. After modifying many of these screen files, I run git add documentation/\\*.screen—as ...
8
votes
3answers
690 views

git stash and edited hunks

I totally love git add -p and git stash but I occasionally have the following problem, which is reproduced by the following sequence of commands: git add -p my_file: then I edit a hunk manually ...
6
votes
3answers
258 views

why it is not possible to git add .git/hooks/my-hook

I would like to have some hooks always present in a clone of a given repository. Is there a way to add a file in .git/hooks in the repository? Thanks
6
votes
4answers
914 views

splitting up a git commit into phases: how to manually intervene?

I have a source file where 2 features have been added. In order to allow cherry-picking, I'd like to commit that in 2 phases: one for each feature. Until now, in similar situations, using git add -p ...
5
votes
2answers
126 views

git: store different stages of a file in the index/working tree after conflict

Assume one file is in conflict state with git. It means that the index contains 3 versions of the file, the previous one, the one from one branch, the one from the other branch. I would like to ...
4
votes
1answer
621 views

Push Git branches directly into a live server directory so files are seen live

How can I set up remote directories in Git where I can locally push a stage branch to the remote and see the live changes on a staging server, like stage.example.com? The notion I have (part of why I ...
3
votes
3answers
53 views

Add existing source code folders into Local Git Repository

Let's say I have two existing folders that I want to put under Git source control. One is called CurrentProduction and the other CurrentDevelopment. Would the following steps be correct? Create a ...
3
votes
3answers
118 views

hg equivalent of git add -p?

Is there a mercurial equivalent of git add -p? Quoting from man git-add the option -p (or --patch) does the following: Interactively choose hunks of patch between the index and the work tree ...
3
votes
5answers
1k views

git add --interactive “Your edited hunk does not apply”

I'm trying to use git add --interactive to selectively add some changes to my index, but I continually receive the "Your edited hunk does not apply. Edit again..." message. I get this message even if ...
3
votes
4answers
964 views

Unable to Git-add with force

I get git-status at ~/bin: # Untracked files: # (use "git add <file>..." to include in what will be committed) # # screen/dev/ I run git add --force screen/dev/ I get the same ...
2
votes
2answers
62 views

Git: can we compare two staged-version of the same files?

Is it possible to staged twice the same file and compare (diff) the two staged version? Example with the file myclass.java: I stage my file ==> git add myclass.java (staged file version 1) I do some ...
2
votes
4answers
115 views

How to avoid specifying absolute file path while git-add

Using git add command becomes tedious once the file path becomes lengthy. For e.g. git add src_test/com/abc/product/server/datasource/manager/aats/DSManger.java Is it possible to bypass specifying ...
2
votes
2answers
500 views

Git - How do you clear the staging area?

I made a new repository, and ran git add -A. I then noticed that there was a folder containing about 100 files that shouldn't have been included, so I added it to .gitignore. How do I now clear the ...
2
votes
2answers
1k views

Unstage all deleted files in Git

I want to unstage all file deletes. Is there an easy way? I want to apply this to the file pattern of all deletes.
1
vote
1answer
100 views

git status: what is UU and why should add/rm fix it?

Here is the current state of this feature branch. Recent Steps: Remote development branch diverged Fetched remote development branch Stashed local feature branch's diverged changes that I want to ...
1
vote
1answer
374 views

Why does git show “dev/null” in status after interactive add of renamed file?

I get an unexpected appearance of "dev/null" in my git status output after interactively adding a patch for a file that was renamed. I'm wondering if this is expected and there is some good reason for ...
0
votes
2answers
281 views

Undo git reset --hard

I am trying to recover my work. I stupidly did git reset --hard, but before that I've done only get add . and didn't do git commit. Please help! Here is my log: MacBookPro:api user$ git status # On ...
0
votes
2answers
101 views

What happens when you run `git add .git` in a Git repository?

While it seemed to do nothing, it gave no warning or error message. Any ideas?
0
votes
1answer
140 views

Git cat staged file to stdout

I have staged parts of a file in git like so git add --patch ./file I would like to output the contents of the staged file to stdout. Note that the staged file and the file in the working ...
0
votes
1answer
107 views

git-svn problem with git add --patch resulting in conflicts

Basically when i want to commit two separate changes in the same file that resulted from an git add --patch <file> operation, git svn rebase later on throws 1-2 conflicts upon comitting the ...