What are we doing? Generating SSH keys and adding them to bitbucket Installing Git core on our web server Setting up a repository Pushing a project to a repository Why? Version control is an industry
Read moreCategory: git
Remove Lots of Deleted Files from Git at Once
Best Git command ever? This little gem will remove multiple deleted files from Git with one (sadly not very memorable) command. git rm `git status | grep deleted | awk '{print $3}'` I definitely owe
Read moreFixing Git “error: bad index file sha1 signature”
I was setting up Git on a server at work and came across an issue whereby everything seemed to be setup ok but once I ran git status it would return the following error error:
Read more