Posts tagged Git

Linux Logo

Linux – CentOS6 – Git – fatal – Where do you want to fetch from today?

0

If you are using GIT as your version control and you attempt to do a `git pull` and get a “fatal: Where do you want to fetch from today?” message, you need to do either of the following:

# Specify the remote repo
mkdir repo
cd repo && git init
git pull git@github.com:user/repo.git

# Or
# Clone the repo
mkdir repo
cd repo && git clone git pull git@github.com:user/repo.git .
git pull

Linux – Ruby – Capistrano – GIT – No Such File or Directory – Errno::ENOENT

0

If you are running capistrano to execute commands on another server and get a message that looks like:

No such file or directory - /usr/local/git/bin/git ls-remote git@github.com:user/repo.git master (Errno::ENOENT)

Be sure the user whom you are logging in as through capistrano has access to `git`. To test whether the user has access, ssh as the user and type `git`, if you get a bash error, then set the path in the user’s ~/.bash_profile. Otherwise you should see a list of git options.

GIT – Basic Usage Guide

0

Living doc storing commonly used git commands.

Revert unstaged changes

git checkout -- .

Rename repo

 vi .git/config #change url in remote origin section to new name

Now change the name of the remote repo.

git push #test to make sure things weren't broken

Remove all untracked files

git clean -f -d #will also remove untracked dirs

Reset local repo

git reset --hard HEAD #useful for recovering after a git rm -r .

Automatically Stage Tracked Files (and Mass Remove Deleted Files)

git add -u
Go to Top