ผลต่างระหว่างรุ่นของ "01219245/git"

จาก Theory Wiki
ไปยังการนำทาง ไปยังการค้นหา
แถว 55: แถว 55:
 
Hyper-Text Markup Language (HTML) is the language that describes the web.  Almost everything we see on the web is written in HTML, including the current page you are viewing.
 
Hyper-Text Markup Language (HTML) is the language that describes the web.  Almost everything we see on the web is written in HTML, including the current page you are viewing.
  
[[Image:Theorywikihtml.png|640px]]
+
[[Image:Theorywikihtml.png|640px|frame]]
  
 
==== 1.3 Adding and committing files to the repository ====
 
==== 1.3 Adding and committing files to the repository ====

รุ่นแก้ไขเมื่อ 05:45, 14 มกราคม 2557

This is part of 01219245.

In this course, we will use Git as our software version control tool. There are various UI clients for Git, but we will use the command-line version.

Preparations

Install Git: go to download page, download and install the command-line version.

Git-download.png

  • Additional info for Windows users:
    • When the installer ask you to select components, you can tick off the "Windows Explorer integration".
    • When the installer ask you the option to "Adjusting your PATH environment", choose "Run Git from Windows Command Prompt".

In-class practice

1. Basic git with HTML

You should watch the first part of the clip, Git (Part 1), to get some idea of the exercise.

1.1 Creating a new repository

1. We will work with command line. For Windows user, use cmd.exe. For Mac/Linux, open a terminal program.

2. Find a location in your file system, and create a new directory/folder for the practice. Let's call the directory homepage. The command for that is mkdir.

mkdir homepage

Then change the current directory to homepage:

cd homepage

3. We will create a repository in that directory. To create a new Git repository, simple call

git init

If the command runs successfully, git would say something like this:

Initialized empty Git repository in /xxx/xxxx/homepage/.git/

4. If you call,

git status

to see the status of the repository, Git would reply that there's nothing to commit

# On branch master
#
# Initial commit
#
nothing to commit (create/copy files and use "git add" to track)

1.2 Your (first) HTML page

Hyper-Text Markup Language (HTML) is the language that describes the web. Almost everything we see on the web is written in HTML, including the current page you are viewing.

Theorywikihtml.png

1.3 Adding and committing files to the repository

2. Practice with branching

Links

  • http://git-scm.com/ - Git main site: documentation
  • YouTube clips:
    • Part 1 - covers the following commands: init, status, add, commit, diff, log
    • Part 2 - covers how to ignore files
    • Part 3 - covers basic branching mode and how to move the HEAD around the commit graphs
  • Other YouTube clips:
    • TBA