we have a main repo
name as AppDev
and we forked it also I cloned to my local system.
Every time I am committing updated code in the following way.
localsystem(Clone)-->forkedRepo/particularbranch
git add file
git commit -m "Comment"
git push origin
After running the above commands, I am getting updated code into my forked repo.
Know I want to send pull request from forkedrepo/particulareBranch
to main(AppDev)repo/particulareBranch
.
I know,how to do this by web page.But I want to send pull request through Git Power shell
.
can anyone suggest me with corresponding commands.
Thanks.