We do not use git for version control, We just use to to backup our projects, So we have A company folder , then each developer uploads his own project , to the tree is like
Company-Project(Main Folder ) -Dev1 Poject -Dev2 Project -Dev3 Project I am dev4 , I need to add my project here. When I push , git wont allow me because I do not have work which is already there. I can not clone / pull the master branch as it is too heavy like 5 GB.
Any help ? Please Explain your reason if you are downvoting.
git branch new-branchgit add --allgit commit -m "stuff"dev4/*files but anyone checking them out will find that all thedev1/*,dev2/*, anddev3/*files are removed, because your snapshots—your commits—say "don't have any of those files now; have onlydev4/*files now".