Hi I'm sharing how to install Sourcetree with maricural support to get the clone of your bitbucket copy code
- Check for Github install in MAC ,by default it will be there but you can check from following command
- git --version
- Required O/p : git version 1.8.1.3
- Configure your global username using the following command:
- git config --global user.name "FIRST_NAME LAST_NAME"
- Configure your global email address using the following command:
- git config --global user.email "MY_NAME@example.com"
- Install Mercurial
- Make sure you have root access (sudo) on the system where you want to install Mercurial
- Download and install
- Verify the installation was successful by typing the following at the command line.
- hg --version [you will see below output ]
- Mercurial Distributed SCM (version 3.3.1+20150311)(see http://mercurial.selenic.com for more information)Copyright (C) 2005-2014 Matt Mackall and othersThis is free software; see the source for copying conditions. There is NOwarranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
- Determine if you already have a
~/.hgrcfile in your environment by entering the following at the command line: - If you get "No such file or directory" then create it by following command
- ls ~/.hgrc
- Done !!
Now you can use the generated url from bitbucket and use it in Terminal, now you should not get any error of HG command
-
hg clone https://YOUR-USER-NAME@bitbucket.org/avaiyakirtib/Exampleapp
- You will need to ask for password and go on
- Done!!
No comments:
Post a Comment