I had a computer running some software, that I had/have in a github repo. I just got some new hardware, and moved to that, basically just copied all files (incl. .gitignore) to the new hardware.
How do I make the new directory on the new hardware "continue" in the github repo? Can I just do something like:
git init
git add .
git commit -m 'MESSAGE'
git remote add origin https://github.com/Aephir/Home_Assistant
git push -u origin master
Or would this cause problems? I will no longer push from the old hardware, and this is something that will only ever be pushed from one place (new hardware/directory), in case that matters. The git repo is mostly just to be able to share my config with the community, no one else is modifying anything and/or committing.
Cheers!