Friday, March 16, 2012
Domain Name Generator
If you're looking for a domain name, I recommend this web site: http://impossibility.org/
Wednesday, March 7, 2012
Friday, March 2, 2012
Backup Local Git Repo
I wanted to backup my local git repo into a single file that I could save it to an external storage.
Create a bundle for my git repo:
git bundle create myrepo.bundle master
Create the repo from the bundle:
git clone myrepo.bundle -b master myrepo
Create a bundle for my git repo:
git bundle create myrepo.bundle master
Create the repo from the bundle:
git clone myrepo.bundle -b master myrepo
Thursday, March 1, 2012
Open Hidden Files in MAC OS
In the Open Dialog Window, do Command+Shift+. (period)
This will show the hidden files and you can choose the open that you want to open.
If you want the Finder to show, do this:
At command line, enter:
defaults write com.apple.Finder AppleShowAllFiles YES
Hold down Alt, right click on the Finder, and do "Relaunch"
This will show the hidden files and you can choose the open that you want to open.
If you want the Finder to show, do this:
At command line, enter:
defaults write com.apple.Finder AppleShowAllFiles YES
Hold down Alt, right click on the Finder, and do "Relaunch"
GitHub
Problem:
ERROR: Repository not found.
fatal: The remote end hung up unexpectedly
Solution:
To do ssh, you need to set up your SSH key: http://help.github.com/mac-set-up-git/
ssh-add
ERROR: Repository not found.
fatal: The remote end hung up unexpectedly
Solution:
To do ssh, you need to set up your SSH key: http://help.github.com/mac-set-up-git/
ssh-add
Subscribe to:
Posts (Atom)