Tag: Commit

06/07/2020

Add Local Repository to BitBucket/GitHub

Create an account on BitBucket/GitHub. Create new respository in BitBucket/GitHub. And you will get a http clone url with .git extension as below.git clone https://github.com/user_name/myrepository.git Next go to your local project/directory in Git Bash Terminal. cd /path_to_local_folder/repo Init your project as git repository git init Connect your local repository to remote git repository. [Change below link as per your remote git repository.] git remote add […]