I have tried all the possible ways
git fetch origin
git fetch --all
But I am not able to see any of the remote branches in my local.
C:\Jboss_WP_TN_MAVEN\tdhs_ebms_wp>git branch -r
origin/feature/tdhs_ebms_wp_feature
I have tried all the possible ways
git fetch origin
git fetch --all
But I am not able to see any of the remote branches in my local.
C:\Jboss_WP_TN_MAVEN\tdhs_ebms_wp>git branch -r
origin/feature/tdhs_ebms_wp_feature
Copyright © 2021 Jogjafile Inc.
git remote -vshould show you if your remote is properly set. If it isn't, do:git remote add origin [email protected]:someUser/someRepo.gitFollow that with a
git fetchso your client is aware of remote changes.git branch --remoteshould list all the remote branches known by your client. To list branches, you shouldn't append a branch name to your command.