git config --global user.name "<your name>"git config --global user.email "<youremail@somewhere.com>" Related Commands Show current git…
How to Create a Soft Symbolic Link (symlink) in Unix/Linux
# Create a soft symbolic link from /mnt/original (file or folder) to ~/link
ln -s /mnt/original ~/link
See also:
You way be wondering why I wrote this blog post? This is pretty well known and there are hundreds of results in Google if you forget. Well, the problem is most of the current Google results require you to scroll down very far to get to the main point. So with this post, I can just google for “chinhdo symbolic link” and I find what I need immediately right at the top of the page.
This Post Has 0 Comments