เพียงเพื่อเพิ่มคำตอบอื่น ๆ ก่อนที่ฉันจะรู้วิธีการใช้คอมไพล์ฉันกำลังมองหาวิธีอัปโหลดโค้ดที่มีอยู่ไปยัง github ใหม่ (หรือ git อื่น ๆ ) repo นี่คือบทสรุปที่จะช่วยประหยัดเวลาสำหรับมือใหม่: -
สมมติว่าคุณมี github ว่างใหม่หรือ git repo อื่น ๆ พร้อมแล้ว: -
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
หรือหากคุณมี git repo ในเครื่องอยู่แล้ว
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