Как получить изменения в следующем сценарии? - PullRequest
1 голос
/ 01 марта 2011

Я пытаюсь понять, как работает git . Поэтому я инициализировал пустой репо и добавил в него файл следующим образом.

cd /home/adnan/workspace
mkdir git-test
cd git-test
git init
touch README
git add .
git commit -m "initial commit"

Теперь я клонировал это репо, используя следующую последовательность команд

cd /home/adnan/Desktop
git clone /home/adnan/workspace/git-test

после этого я внес изменения в файл README, зафиксировал их и отправил в первое хранилище с помощью следующих команд

cd /home/adnan/Desktop/git-test
vi README
git commit -a -m "second commit"
git push

Теперь запущенный git log в обоих репозиториях показывает одно и то же, т.е.

совершить cdf192f7e26e734c7a56cc830ade2e2d13c6fb0d Автор: Аднан Вахид Дата:
Вт 1 марта 14:05:12 2011 + 0500

second commit

совершить f8b75838e728e46cae949f66ff86d29c0864d976 Автор: Аднан Вахид Дата:
Вт 1 марта 14:03:23 2011 + 0500

initial commit

но я не могу понять, как получить изменения в исходном репо, т. Е. / home / adnan / workspace / git-test . Если я попытаюсь сделать git checkout , я получу это сообщение:

M   README

Как получить изменения, которые я сделал в клонированном репо и запихнул?

1 Ответ

1 голос
/ 01 марта 2011

Вы видели сообщение об ошибке при git push?Примерно так (предполагается, что git> 1.7.0)?

$ git push
Counting objects: 5, done.
Writing objects: 100% (3/3), 246 bytes, done.
Total 3 (delta 0), reused 0 (delta 0)
Unpacking objects: 100% (3/3), done.
remote: error: refusing to update checked out branch: refs/heads/master
remote: error: By default, updating the current branch in a non-bare repository
remote: error: is denied, because it will make the index and work tree inconsistent
remote: error: with what you pushed, and will require 'git reset --hard' to match
remote: error: the work tree to HEAD.
remote: error: 
remote: error: You can set 'receive.denyCurrentBranch' configuration variable to
remote: error: 'ignore' or 'warn' in the remote repository to allow pushing into
remote: error: its current branch; however, this is not recommended unless you
remote: error: arranged to update its work tree to match what you pushed in some
remote: error: other way.
remote: error: 
remote: error: To squelch this message and still keep the default behaviour, set
remote: error: 'receive.denyCurrentBranch' configuration variable to 'refuse'.
To /home/pfarmer/git-test/git-test
 ! [remote rejected] master -> master (branch is currently checked out)
error: failed to push some refs to '/home/pfarmer/git-test/git-test'

По умолчанию по умолчанию вы не можете перейти в не-пустой репозиторий.Но вы можете git pull, поэтому попробуйте:

cd /home/adnan/workspace/git-test
git pull /home/adnan/Desktop/git-test

, и вы должны увидеть что-то вроде:

$ git pull ../git-test2/
From ../git-test2
 * branch            HEAD       -> FETCH_HEAD
Updating 161aeea..c66b221
Fast-forward
 README |    1 +
 1 files changed, 1 insertions(+), 0 deletions(-)
...