Tagged Questions
The git-checkout tag has no wiki summary.
50
votes
3answers
15k views
git checkout remote branch
I am trying to checkout a remote 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. But how can I get this branch?
...
24
votes
1answer
9k views
git stash blunder: git stash pop and ended up with merge conflicts
I did a git stash pop and ended up with merge conflicts. I removed the files from the file system and did a git checkout as shown below, but it thinks the files are still unmerged. I then tried ...
10
votes
1answer
1k views
Switch current branch in git bare repository
I actually want to remove a branch in the bare repository i am working with, but this task hits a dead end because I cannot switch away from the master repository without a 'work tree' which a bare ...
10
votes
2answers
9k views
To git checkout without overwriting data
How can you git-checkout without overwriting the data?
I run
git checkout master
I get
error: Entry 'forms/answer.php' would be overwritten by merge. Cannot merge.
This is surprising, since I ...
8
votes
3answers
5k views
Git: can't undo local changes (error: path … is unmerged)
I have following working tree state
$ git status foo/bar.txt
# On branch master
# Unmerged paths:
# (use "git reset HEAD <file>..." to unstage)
# (use "git add/rm <file>..." as ...
7
votes
3answers
1k views
Is there a difference between “git reset --hard hash” and “git checkout hash”?
While reset and checkout have different usages most of the time, I can't see what difference there is between these two.
There probably is one or nobody would have bothered adding a "--hard" option ...
6
votes
3answers
194 views
Can't reset a file to a specific commit using Git
I have a modified file which I want to rever to whatever is in the latest commit but it's "stuck" there always being marked as modified.
$ git status
# On branch master
# Changed but not updated:
# ...
6
votes
1answer
1k views
Why does git-rebase give me merge conflicts when all I'm doing is squashing commits?
We have a Git repository with over 400 commits, the first couple dozen of which were a lot of trial-and-error. We want to clean up these commits by squashing many down into a single commit. Naturally, ...
4
votes
1answer
58 views
Is it possible to git-checkout a single line instead of the entire file?
If I have modified several lines of a versioned file, is it possible to undo the changes of a line by command-line?
Just like I would do for an entire file with:
git checkout /path/to/file.extension
...
4
votes
7answers
98 views
How to find out what commit a checked out file came from
When I check out a file with git checkout $commit $filename and I forget $commit but still remember $filename, how do I find out what $commit was?
4
votes
2answers
329 views
Get back the changes after accidental checkout?
The following was the status of my repo.
[~/rails_apps/jekyll_apps/nepalonrails (design)⚡] ➔ gst
# On branch design
# Changed but not updated:
# (use "git add/rm <file>..." to update what ...
3
votes
2answers
119 views
Strange behaviour of Git: mysterious changes cannot be undone
I am seeing a behaviour in Git which seems very mysterious to me.
I keep a clone of the Linux repository from Github to play with Git locally. To be clear, I don't do much in this repository : I fetch ...
3
votes
2answers
69 views
Subdirectories in checked out directory of a previous revision not disappearing in Git?
I'm trying to use git checkout <hash> <directory> to checkout a previous revision of a directory in my repo. This works to restore the files in the directory to their previous state, the ...
2
votes
4answers
169 views
Git Revert, Checkout and Reset for Dummies [closed]
Sorry, but this trio of git commands is taxing my intelligence.
Is it possible to set up a group wiki for total newbies to cover these three git commands? What I am trying to learn is how to restore ...
2
votes
3answers
249 views
Git: use revert or checkout to undo pushed changes?
Git is a phenomenal tool, but I have yet to wrap my mind around the best way to undo pushed changes. Here's the situation.
I'm on a branch, and have pushed several commits to GitHub. It has since ...
2
votes
3answers
1k views
error: git checkout-index: unable to create file
What I am trying to do is a git clone on windows, but the parent repository exists in a unix machine.
Am cloning using ssh to get a clone from UNIX to windows, and I get this weird error.
error: ...
2
votes
3answers
242 views
Confusion about git checkout
I am confused about a behavior of git checkout. The documentation of git checkout says:
--merge
When switching branches, if you have local modifications to one or
more files that are ...
2
votes
1answer
746 views
Is there a git uncheckout?
With git clone there is the option -n wich prevents a checkout of HEAD after the repository is cloned. Is there a possibility to do this manually?
Edit I think the option -n reads better in the ...
1
vote
3answers
58 views
How to checkout a remote branch in Git?
Someone pushed a "new feature" branch to the shared repo:
git push -u new_feature_branch
Now, I would like to create a copy of this branch on my local machine in order to test the new feature.
...
1
vote
4answers
47 views
Confusion over branch creation in git
After making a few changes to branch master I decided to work from a new branch. I did git checkout -b new_branch_name and a new branch was created and checked out. git status showed the changes I had ...
1
vote
3answers
84 views
What is the use of “git checkout -f” when “git status” shows tracked file changes on all branch
I have a tracked file (an old versioned file) that i modified on master branch.
The staus on master branch shows this file as modified but
The status on the topic branch also shows this file as ...
1
vote
2answers
46 views
How the working directory is updated on “git checkout”?
Consider the following "story":
$ mkdir my_project
$ cd my_project
$ git init
Initialized empty Git repository in /home/misha/misha/my_project/.git/
$ echo "first line" > hello.txt
$ git add ...
1
vote
4answers
85 views
What do do with commit made in a detached head
Using git i made somthing like this
git clone
git checkout {a rev number tree rev before} (here i started to be in a detached head state)
//hacking
git commit
//hacking
git commit
(some commit where ...
1
vote
2answers
559 views
Reuse GIT_WORK_TREE in post-receive hook to rm a few files
I've used this 'tutorial' to set up a DSP environment: http://toroid.org/ams/git-website-howto (Yes, I don't have a T).
My workflow is very easy:
Develop locally (D)
Commit a few things
Commit more ...
1
vote
3answers
65 views
Git problem when try to discard changes
I do git status:
# modified: xxx/yyy/something.PNG
# modified: xxx/yyy/something-l.PNG
then git checkout xxx/yyy/something.PNG and xxx/yyy/something-1.PNG
but when i do git status again it ...
1
vote
1answer
72 views
How to get the changes in following scenario?
I am trying to understand how git works. So I initialized an empty repo and added a file to it as following.
cd /home/adnan/workspace
mkdir git-test
cd git-test
git init
touch README
git add .
git ...
1
vote
2answers
200 views
GIT: Deleteing or undoing a push to a remote repo
Hello experts
I am a git newbie so go easy on me please !
I created a remote git repository and proceeded to push code to it from the wrong local repo.
The local repo is fine I just want to kill the ...
1
vote
1answer
366 views
Git checkout does not change anything
I really like git. At least, I like the idea of git. Being able to checkout my master project as a separate branch where I can change whatever I want without risk of screwing everything else up is ...
1
vote
2answers
955 views
Git: move changes between branches without working directory change
Use-case: every time I want to move commit from one git branch to another I perform the following sequence of actions:
[commit into working branch]
git checkout [branch-to-merge-into]
git ...
0
votes
0answers
24 views
How do checkout to a point in time on a specific Git branch?
I want to look at my branch in Git as it was some time ago. So I run git log and find a specific commit SHA hash, and run git checkout <myhash>.
This usually works just fine, but this time ...
0
votes
1answer
23 views
git: replace folder with the same folder on a different branch
I tried
git checkout OTHER_BRANCH -- /path/to/folder
the problem is with files that exist on current branch, but do not exist on the other branch.
I want to delete these.
0
votes
3answers
66 views
dot sign's meaning in git checkout command
if I use git command like this:
git checkout -- .
I know its effect is to discard all unstaged files everywhere.
Can anyone tell me what is the meaning of the dot sign (.) in this command?
0
votes
1answer
87 views
post-receive hook fails “cannot be used without a working tree”
I've used this Git setup for managing a website: http://toroid.org/ams/git-website-howto.
Things work, until I active the post-receive hook. Before activating it, I can push and pull with no ...
0
votes
1answer
194 views
Why doesn't setting GIT_WORK_TREE work in a post-commit hook?
I'm trying to use the following post-commit hook to deploy to a particular directory after each successful commit:
#!/bin/sh
export GIT_WORK_TREE=/var/www/example/
export ...
0
votes
4answers
72 views
Is it possible to view multiple git branches at the same time for the same project?
I have 2 branches, which are not ready to be merged yet, but have some complementary logic, which I'd like to review (before merging)
Can I check out multiple git branches of the same project? Is it ...
0
votes
2answers
143 views
Git Checkout reverted code to older commit, how to revert back?
I have been working on some code, which I use git to manage. Earlier, I used commit to save a version of my code that worked. I later decided to redo the code, since it needed some new features and ...
0
votes
3answers
55 views
How do I merge two Git branches, with specific commit ids, into one branch?
I have two commits:
[branch]: [commit_id]
justin: 94943b74ba273a9f4009
jzbranch: 6070aada7b8a690d410b
How do I merge the two branches, into jzbranch, and resolve any differences between the two?
0
votes
2answers
50 views
How can I get working directory content as it was at specific commit
I have a git repository with some commits in it. I want to reproduce exact state of working directory as it was right after specific commit (Here i suppose that i've commited all changes that were ...
0
votes
3answers
295 views
switching branches in git - when will i get “You have local changes cannot switch branches.”? [closed]
Possible Duplicates:
git: Switch branch and ignore any changes without committing.
Git branches behaving strangely
I know that the general recommendation is to have a clean status before ...
0
votes
1answer
131 views
How to launch a Bash function using Git alias
I want to use a Git alias in ~/.gitconfig so that it calls a bash function, if it is defined, otherwise call the regular git checkout.
This is what I have devised:
cat ~/.gitconfig
...
[alias]
...
...
0
votes
1answer
119 views
Why does git checkout master resets my edits?
Basically, I was working already in the master branch , (I hadn't checked out to another branch) and after doing git add . and git commit, I accidentally ran git checkout master, now when I do git ...
0
votes
2answers
58 views
Is this possible with Git?
I want my git repo to be at the state it was at a specific commit. Once the repo is at the state, I want to be able to push to Github, making the remote be at that state. I know I can call git ...
0
votes
1answer
35 views
fetch upcommited changes after checkout
is there any way to fetch uncommited changes I left when I checkout out a new branch (dumb, I know!!)
I switched back the branch I was on, and I still have the following message, leading me to ...
0
votes
2answers
118 views
GIT: Checkout to a “Really” Specific Folder
I want to export, checkout, or whatever you call it from the index, HEAD, or any other commit, to a specific folder, how is that possible? Similar questions have already been asked:
GIT: Checkout to ...
0
votes
1answer
103 views
Is the full path required to unstage a file in GIT if am currenlty under a sub-directory?
Repo: mergetest
$pwd
/gitvobs/mergetest/apple
$git status
On branch br1
Changed but not updated:
(use "git add ..." to update what will be committed)
(use "git checkout -- ..." to discard ...
0
votes
2answers
241 views
git checkout certain files despite conflict
I frequently find myself wanting to checkout only certain files in a tree but cant because I have modified them locally and dont want the hassle of trying to figure out merge (I dont want to merge ...