1

我用标准命令创建了 repo

git init
git add .
git remote add origin ssh://trololo.lo/~/git_rep.git
git commit -a -m "trololo"
git push origin master

之后,我在另一台机器上创建了空仓库,拉取了原点。有些文件丢失了,知道为什么以及我应该做什么吗?

4

2 回答 2

3

在你执行之前commit,运行git status并确保你正在提交你认为你正在提交的内容。如果您可以在提交git status 运行并获得除消息以外的任何内容working directory clean,那么您add在提交之前忘记了一些事情。

于 2012-06-15T17:49:26.267 回答
0
git add -A
git commit -m "message here"
git push origin master
于 2012-06-15T17:41:25.390 回答