Skip to main content

Git commands i was unaware of !

Git basics and continued...!

Add all the deleted files using 'git add -u'. This will add all the files in git including the deleted files.

If you only want to add deleted files, try:
git ls-files --deleted | xargs  
git commit

Once you clone a project, check out the branches present using,

git branch -a or git branch -r for remote branches.

See the contents of any object using git show

Check for the space occupied by object database to 

git count-objects -v
git verify-pack -v .git/objects/pack/pack-*.idx
To check if connection to host is established.
ssh -vT git@github.com

Comments

Popular posts from this blog

Cannot allocate memory error while computing files - Setup Swap space

ActionView::Template::Error (Cannot allocate memory - nodejs /tmp/execjs20131021-26716-fckzo3.js 2>&1 Nodejs is used to compile javascript at runtime. In RoR applications, this error comes when server is started in production mode which compiles the assets or while running rake assets:precompile . check for swap space and allocate

RubyConf 2013 at pune..retrieved from drafts

A great experience while interacting with the ruby community from different places. Lots of knowledge and inspiration flows. Met many folks from india and abroad.

Fresh server start after instance degraded

So the issue was, amazon issued an warning regarding the server to be terminated, before i could think of making an backup the instance stopped. The troubleshoot operations like reboot, stop and start didn't worked. Simple Steps to start a fresh instance with the previous content on server.