So in their inifinite wisdom my work has moved everything to secured servers that do not connect to the internet and I had to move my projects to the servers to access data via virtual desktop.
This of course causes some issues with pushing to Github.
I had hoped I could copy and paste my git folders to my personal desktop and commit/push from there intermittently but it seems I am getting errors when I do so... It seems to think these were created in a different repo?
$git commit -am 'Push new stuff'
$git push origin master
To https:xxxxxxxx.git
! [rejected] master -> master (fetch first)
error: failed to push some refs to 'https:xxxxxxxxxx.git'
hint: Updates were rejected because the remote contains work that you do
hint: not have locally. This is usually caused by another repository pushin
hint: to the same ref. You may want to first merge the remote changes (e.g.
hint: 'git pull') before pushing again.
hint: See the 'Note about fast-forwards' in 'git push --help' for details.
Any advice on a way to get this process to work?