git-add - Add file contents to the index

learn more… | top users | synonyms

0
votes
2answers
22 views

git- filter certain file

I have a constants file, this file is needed but every developer keeps changing this for his environment and often pushes this changed file. Is there a way that there can be a filter where in this ...
2
votes
2answers
55 views

Git add only all new files, not modified files [duplicate]

Is there a way to only add new files and not add modified files with git? That is, files that are listed as untracked with git status. Other than ofcourse adding each file separately. It's not ...
1
vote
1answer
50 views

GIT - git-add error (Bad File Number)

I'm using Git to create a backup system. I've just created the directory and initialized git on it. git init When I tried to add the untracked files to the stage with git add -u *.pdf I get ...
-2
votes
2answers
70 views

How to add multiple files in git

I have 4 files in a folder. I have modified 3 of them. How do I add and push only the modified files all at once. Will "git add ." work here.
2
votes
1answer
69 views

Git add lines to index by grep/regex

I have a giant patch that I would like to break into multiple logical git commits. A large number of the changes are simply changing variable names or function calls, such that they could easily be ...
2
votes
3answers
66 views

When one adds an untracked file, does it not go to staged immediately?

In the diagram shown on the git-scm page, Recording Changes to a Repository, it shows that when an untracked file is added, it moves to the unmodified state. Is this correct? If I run $ git add ...
0
votes
0answers
111 views

Git unmerged paths cannot added

I tried to merge on branch but the git says that i have conflicts. When i try to add the unmerged-paths git says that path doesn't exists. how can i solve this problem?
0
votes
1answer
67 views

What's the Difference between “git add -u” and “git add -A”

Okay, so I was searching "How to Remove Manually Deleted files from Git" without actually doing git rm file.txt for each file when I came across This Link. The two most Up-Voted commands were: git ...
0
votes
2answers
40 views

Git Not Committing Directory Contents

I'm trying to add every single thing I have in directory through git. However, for one particular directory, it loads the folder, but none of the contents. I tried to use git add -A but was ...
1
vote
1answer
25 views

Some folders are empty while cloning after a git add -A

I created some repository in Git and added repos as submodules. In the submodule repo i added contents.( folders and files).After that i did git add -A git commit -m "message" git push origin ...
1
vote
1answer
50 views

What is the correct 'git-add' command to issue after running 'git-mergetool'?

I'm unclear on the correct sequence of Git commands required to complete a merge that has resulted in conflicts. I understand that one approach is to follow the rejected merge with something like git ...
2
votes
1answer
38 views

'git add --patch' to include new files?

When I run git add -p, is there a way for git to select newly made files as hunks to select?? So if I make a new file called foo.java, then run git add -p, git will not let me choose that file's ...
2
votes
1answer
49 views

How can I commit with cloned submodule in my repo?

I have created a repo for my .vim directory so that I won't need to donfigure that every time I change a machine I am working on. So I have something like that now: user@.vim$ tree -L 3 -a . |-- ...
0
votes
0answers
64 views

git add failing because of .DS_STORE file

I removed a .DS_STORE file from my local repo then I ran git add ., and I have this message : fatal: unable to stat '.DS_Store': No such file or directory How can I manage this ?
0
votes
1answer
386 views

Git add not adding files

when I try to git add my files, I typed git add <insert file names here> That works correctly. However, when I try to do git commit -a My git repository tells me that it's empty. What is ...
2
votes
1answer
129 views

Difference between ( git add -A followed by git commit ) and git commit -a?

git add --all or git add -A followed by git commit -m "commit message" seem to produce a different result from git commit -am "commit message" when I thought they would produce the same final result. ...
2
votes
2answers
242 views

Use Git's patience diff algorithm for interactive add

I'd like to use Git's patience diff algorithm (the one you get if you invoke git diff with the --patience argument) with git add -p. How can I do this? Background: I'm working with some XML files, ...
2
votes
1answer
155 views

sublime: bind “git: add…” from command palette to hotkey

I'd like to bind action "Git: add…" (multiple files selection) from sublime command palette. command: show_overlay {"overlay": "command_palette"} //shows command palette itself command: ...
0
votes
2answers
50 views

Git commits un-staged changes of previously staged file, contrary to git-scm book

The section of the book: http://git-scm.com/book/en/Git-Basics-Recording-Changes-to-the-Repository#Staging-Modified-Files says that if I change file A, run 'git add A' and then change file A again, ...
1
vote
3answers
306 views

How to Undo “git add -A” in uninitialized local empty repository (while keeping the files on my computer)?

I just started learning Git & Ruby on Rails and from the cmd prompt on my Windows 7 machine, I accidentally did a git add -A under my C:\Users\myusername. All my files were added, but are ...
2
votes
4answers
239 views

How to commit and/or add unchanged file?

I have a case where file I modify does not appear as modified file. Can i still commit that file? Can I add file that is listed as unchanged file to changed file? Thanks! Updates: When I'm trying ...
2
votes
1answer
64 views

Ignoring certain files in directory even when adding directory with -f

I just put my dotfiles in a repository in the manner suggested by Eli Barzilay here: So I’ve finally found a solution that takes the best of both: put the repo in a subdirectory, and instead of ...
1
vote
2answers
45 views

Finding next matching hunk when using git add --patch

I find the use of git add --patch very useful for my work-flow sometimes, like when I need to revise lots before anything is ready to commit, especially with documentation. If I have a large number ...
1
vote
1answer
54 views

when add a file to staged area, does git save the directory info?

I am curious about git add action, so I do some test. create a index 1. git init 2. mkdir mydir 3. echo "hello" > mydir/hello 4. find .git/objects ==> nothing 5. git add . 6. find ...
3
votes
3answers
389 views

Recover files that were added to the index but then removed by a git reset

I added some files to the index but then by mistake I deleted them with git reset --hard. How do I recover them? Here's what happened: I added all files using git add . I then committed When I ...
4
votes
2answers
162 views

What is the meaning of the “bang” or “!” before the git command?

As you can see from this excerpt, there is a "!" before the git command. What's the point? [alias] commitx = !git add . && git commit - http://stackoverflow.com/a/8956546/1354543 I ...
0
votes
2answers
622 views

Git. Update untracked files

When I use command git add -u . git still doesn't update untracked files. Works only when I specify them by path, git add -- filepath What could it be?
4
votes
2answers
824 views

Refresh staged files

In git, is there any (simple) way to modify the index so that only changes to files which are already in it are added? It sounds kind of complicated, but what I want to achieve is simple. Lets say my ...
2
votes
2answers
412 views

What's the difference between Git add (ctrl+A) and Stage to Commit (ctrl+T) in the git GUI?

If git add (CTRL+A) starts tracking changes AND stages changes to already tracked files, why should I ever use Stage to Commit (CTRL+T) in the git gui ?
0
votes
2answers
402 views

Simple Github commit not working (trying to add an image to my public image folder)

So i'm trying to do something i know is simple but its causing me some headaches. I am just trying to get an image from my app (im using MacFusion to ssh to our app vs having it on my machine ...
4
votes
3answers
785 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 ...
1
vote
1answer
1k 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 ...
11
votes
3answers
564 views

hg equivalent of git add -p?

Is there a mercurial equivalent of git add -p? Quoting from man, git-add with the option -p (or --patch) does the following: Interactively choose hunks of patch between the index and the work ...
2
votes
2answers
117 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 ...
11
votes
2answers
7k 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 ...
2
votes
2answers
483 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?
6
votes
5answers
714 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 ...
7
votes
1answer
2k 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 ...
9
votes
3answers
4k 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 ...
0
votes
1answer
380 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 ...
7
votes
2answers
2k 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
4
votes
2answers
3k 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.
5
votes
2answers
184 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 ...
9
votes
3answers
1k 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 ...
0
votes
1answer
125 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 ...
17
votes
2answers
4k views

git add . vs git commit -a

What's the difference between: git add . git commit -a Should I be doing both, or is that redundant?
11
votes
8answers
4k 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 ...
13
votes
1answer
3k 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( ...
14
votes
4answers
2k 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 ...
34
votes
5answers
47k 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 ...

1 2