git - cloned a branch modified it, pushed it to my own branch but github folders are not accessible -
i cloned branch, modified code, used
git remote set-url origin git@github.com:username/repository2.git git add -a git commit -am "pushing code" git push origin
there 3 folders in it.
but when go browse branch, can not click on folders. git status doesn't show new , git remote -v shows branch.
the main folder main github branch have , individual folders clones of other repos. want have files on main github branch. how can accomplish that?
fixed running git rm --cached on path on directories , removing .git in sub directories
Comments
Post a Comment