วันเสาร์ที่ 2 กรกฎาคม พ.ศ. 2559

การ ติดตั้ง และการใช้งาน github โดยใช้ ubuntu แบบคร่าว ๆ

1. ติดตั้ง git ใน linux ของเรา
     sudo apt-get install git

2. Setup ชื่อและอีเมล์สำหรับใช้งาน Git
    (หมายเหตุ: เราต้องไปสมัครสมาชิกใน https://github.com/ ก่อนนะครับ)

    git config --global user.name "YOURNAME"
    git config --global user.email "your@email.com"

3. ดูว่ารายละเอียดการ config git
    git config --list

4. สร้าง folder สำหรับที่เราจะใส่ file และสร้าง git repository ซึ่งควรจะเป็น folder เดียวกัน
    sudo mkdir gitfile
    (หมายเหตุ: gitfile นั้นเป็นชื่อ folder เราจะตั้งชื่ออะไรก็ได้)

5. เข้าไปใน folder ที่สร้างเอาไว้สำหรับใส่ไฟล์ในการทำ git
    cd gitfile

6. สร้างไฟล์ หรือ copy ที่เราต้องการนำขึ้น github มาใส่ใน folder gitfile
 
7.  สร้าง git repository ใน folder gitfile
     git init

8. ตรวจสอบสถานะ repository
    git status

9. add file เพื่อที่จะ upload ขึ้นไปบน github
    git add filename
    (หมายเหตุ: ไฟล์อะไรบ้างที่เราต้องการก็เปลี่ยนจาก filename เป็นชื่อไฟล์ที่เราต้องการ 
                     เช่น hello.sh ก็จะเป็น git add hello.sh เป็นต้น )

10. commit ไฟล์ที่เราได้ add ในข้อที่ 9
      git commit -m "YOUR MESSAGE"
      (หมายเหตุ: ในส่วนของ "YOUR MESSAGE" เราสามารถใส่ข้อความอะไรไปก็ได้แต่ควรเป็นภาษาอังกฤษ 
                      เช่น git commit -m "hello file" )

11. ดูประวัติว่าเราได้ทำอะไรไปบ้างแล้วใน git
     git log

12. สร้าง repository โดยผ่าน github (https://github.com/ )
    12.1. เลือก new repository
    12.2. ชื่อ repository นั้นเราตั้งตามชื่อ folder ที่เราสร้าง git repository ใน linux นั้นคือ gitfile

13. ทำการ remote จากเครื่อง linux ไปยัง github
     git remote add origin git@github.com:YOURNAME/gitfile.git

 14. ตรวจสอบสถานะของ remote
       git remote -v

 15. ส่งข้อมูลไปยัง github
      git push origin master

อ้างอิง: http://devahoy.com/posts/introduction-to-git-and-github/  (เป็นตัวหลักในการใช้เขียนข้อมูลตัวนี้)
           https://www.howtoforge.com/tutorial/install-git-and-github-on-ubuntu-14.04/
           https://git-scm.com/book/th/v1/

ไม่มีความคิดเห็น:

แสดงความคิดเห็น