Aby dodać do innych odpowiedzi, zanim poznałem git, szukałem sposobu na przesłanie istniejącego kodu do nowego repozytorium github (lub innego git). Oto krótki opis, który pozwoliłby zaoszczędzić czas nowicjuszom: -
Zakładając, że masz gotowy NOWY pusty github lub inne repozytorium git: -
cd "/your/repo/dir"
git clone https://github.com/user_AKA_you/repoName # (creates /your/repo/dir/repoName)
cp "/all/your/existing/code/*" "/your/repo/dir/repoName/"
git add -A
git commit -m "initial commit"
git push origin master
Alternatywnie, jeśli masz istniejące lokalne repozytorium git
cd "/your/repo/dir/repoName"
#add your remote github or other git repo
git remote set-url origin https://github.com/user_AKA_you/your_repoName
git commit -m "new origin commit"
git push origin master