Reputation: 6334
I'm new to Git and is using for the very first time. I would appreciate if someone could help me out. I tried finding the answer at forums,but there are tons of commands that are coming out and not sure which one to use.
On the prod server, if I do the git pull
, it is giving me the following error:
Untracked files: (use "git add ..." to include in what will be committed)
Optimization/language/languageUpdate.php
email_test.php
nothing added to commit but untracked files present (use "git add" to track)
Please move or remove them before you can merge.
I'm not too sure how to make it work. If I remove them, from where would it be removed. Appreciate your reply.
Upvotes: 106
Views: 304209
Reputation: 2355
Still another option if you want to get back to a clean state quickly:
rm -rf path/to/changes/
And then reset:
git reset --hard
Check with status:
git status
Note for the uninitiated: this will erase your local changes
Upvotes: 0
Reputation: 11
Problem So, maybe you just have more than one folder for the same project.
Fix: go to your main folder of the project you are working on using the file explorer and if you see duplicate folders of the project, just delete the duplicates until you're left with the initial folder or one folder.
Upvotes: 1
Reputation: 9532
In case someone cares just about the error nothing added to commit but untracked files present (use "git add" to track)
and not about Please move or remove them before you can merge.
. You might have a look at the answers on Git - Won't add files?
There you find at least 2 good candidates for the issue in question here: that you either are in a subfolder or in a parent folder, but not in the actual repo folder. If you are in the directory one level too high, this will definitely raise that message "nothing added to commit…", see my answer in the link for details. I do not know if the same message occurs when you are in a subfolder, but it is likely. That could fit to your explanations.
Upvotes: 5
Reputation: 741
If you have already tried using the git add .
command to add all your untracked files, make sure you're not under a subfolder of your root project.
git add .
will stage all your files under the current subfolder.
Upvotes: 1
Reputation: 21
Follow all the steps.
Step 1: initialize git
$ git init
Step 2: Check files are exist or not.
$git ls
Step 3 : Add the file
$git add filename
Step 4: Add comment to show
$git commit -m "your comment"
Step 5: Link to your repository
$git remote add origin "copy repository link and paste here"
Step 6: Push on Git
$ git push -u origin master
Upvotes: 2
Reputation: 468
Please Follow this process
First of all install git bash and create a repository on git
1) Go to working directory where the file exist which you want to push on remote and create .git folder by
$ git init
2) Add the files in your new local repository.
$ git add .
Note: while you are in same folder make sure you have placed dot after command if you putting path or not putting dot that will create ambiguity
3) Commit the files that you've staged in your local repository.
$ git commit -m "First commit"**
4) after this go to git repository and copy remote URL
$ git remote add origin *remote repository URL
5)
$ git remote -v
Note: this will ask for user.email and user.name just put it as per config
6)
$ git push origin master
this will push whole committed code to FILE.git on repository
And I think we done
Upvotes: 21
Reputation: 1756
Also instead of adding each file manually, we could do something like:
git add --all
OR
git add -A
This will also remove any files not present or deleted (Tracked files in the current working directory which are now absent).
If you only want to add files which are tracked and have changed, you would want to do
git add -u
What is the difference between git add .
& git add --all
?
Upvotes: 77
Reputation: 521103
You have two options here. You can either add the untracked files to your Git repository (as the warning message suggested), or you can add the files to your .gitignore
file, if you want Git to ignore them.
To add the files use git add
:
git add Optimization/language/languageUpdate.php
git add email_test.php
To ignore the files, add the following lines to your .gitignore
:
/Optimization/language/languageUpdate.php
/email_test.php
Either option should allow the git pull
to succeed afterwards.
Upvotes: 82