I want to clone a repo from my GIT to a remote server and through command line i want to create a branch and make changes and add this branch to the repo. I am accessing that remote server from my system I have used following command.
git clone <remote address of repo> <server local address>
cd <repository>
checkout <particular branch> or
checkout -b <new branch> under master
<<<<<<<made changes>>>>>>>>>>
now what ? to make these changes available to remote repository.
And I have this repository available. Now what should be the correct sequence to create branch and make changes and add this branch to the cloned repo. and create pull request.