Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I've created repo, with standard commands

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

After that i've created empty repo on another machine, pulled origin. Some files are missing, any idea why and what I should do?

share|improve this question
Are you sure that you added, committed, and pushed every time you added/made changes to files? – Rob Wagner Jun 15 '12 at 17:38
are the missing files part of the .gitignore file? – Ryan Jun 15 '12 at 17:38
or .git/info/exclude or core.excludesfile – embedded.kyle Jun 15 '12 at 17:44
@Recursed: as a sidenote, as far as tracked files changes are concerned, him issuing git commit -a would be perfectly safe. – Luca Geretti Jun 16 '12 at 9:15

2 Answers

up vote 3 down vote accepted

Before you do the commit, run git status and make sure that you're committing what you think you're committing. If you can run git status after the commit and get anything other than a working directory clean message, then there was something that you forgot to add before committing.

share|improve this answer
git add -A
git commit -m "message here"
git push origin master
share|improve this answer
The key part to use "git add -A" instead of "git add ." – Justin Jun 15 '12 at 17:57

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.