Prerequisite

  • ต้องมี GitHub Account ก่อน ทำตามวิธีการนี้ https://help.github.com/articles/signing-up-for-a-new-github-account/
  • สร้าง GitHub Repository บน Web ก่อน  (ในที่นี้ จะสร้าง Repository ชื่อ mynewrepo) ซึ่งจะได้ URL มาเป็น https://github.com/your-username/mynewrepo.git

สร้าง local repository

mkdir mynewrepo
cd mynewrepo
git init
git status

สร้างไฟล์ใหม่

# สมมุติสร้างไฟล์ใหม่
echo "Hello World" > mynewfile.txt
git add .
git status

ทำการ Commit

git commit -m "This is a first Commit"

สร้าง Connection ระหว่าง Local Folder กับ GitHub Repository

git remote add origin https://github.com/your-username/mynewrepo.git
git push -u origin master

จากนั้น ใส่ Username/Password ของ GitHub Account

ไปดูผลงานใน Repository “mynewrepo” ที่ https://github.com/your-username/mynewrepo

เมื่อมีการแก้ไขไฟล์

echo "Hello New World" >> mynewfile.txt
git status

ทำการ เพิ่ม > Commit > Push

git add .
git commit -m "This is a second Commit"
git push -u origin master

วนไป

 

Share the Post:

Related Posts

ทำความรู้จักกับ Outlook บนเว็บ

Post Views: 12 Outlook เป็นเครื่องมือจัดการอีเมลและปฏิทินที่ทรงพลัง ซึ่งช่วยให้คุณมีระเบียบและเพิ่มความสามารถในการทำงาน ด้วยอินเทอร์เฟซที่ใช้งานง่าย คุณสามารถจัดการกล่องขาเข้าของคุณ นัดหมาย และทำงานร่วมกับเพื่อนร่วมงานได้อย่างง่ายดาย ฟีเจอร์ที่แข็งแกร่งของ Outlook รวมถึงแม่แบบอีเมลที่ปรับแต่งได้ ความสามารถในการค้นหาขั้นสูง และการผสานรวมที่ไร้รอยต่อกับแอปพลิเคชัน Microsoft Office อื่นๆ ไม่ว่าคุณจะเป็นมืออาชีพที่ยุ่งอยู่หรือเป็นนักเรียนที่ต้องจัดการกับภารกิจหลายอย่าง Outlook

Read More

[บันทึกกันลืม] JupyterHub Authenticated with OIDC

Post Views: 39 ต่อจากตอนที่แล้ว [บันทึกกันลืม] JupyterHub ด้วย Docker คราวนี้ ถ้าต้องการให้ ยืนยันตัวตนด้วย OpenID เช่น PSU Passport เป็นต้น ก็ให้ทำดังนี้ ในไฟล์ jupyterhub_config.py ใส่

Read More