How to create a REMOTE branch using smartgit?
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
With the usual command-line Git, a remote reference is automagically created when you clone a remote repository with
git clone href://...(which would call the remote ‘origin’ by default).Or, you can add it manually with a command like
git remote add origin href://.... To push up a branch, you would executegit push origin branchname. (See more detailed examples and explanation here.)However, I can see that SmartGit is a little different (I have not used it myself), and is GUI-based. As far as I can see, the ‘Clone’ and ‘Push’ commands mentioned above can be found in SmartGit’s ‘Remote’ menu. If you want to add a reference to a remote repository, is there an ‘Add’ option in the ‘Remote’ menu??