Coder Social home page Coder Social logo

github-day-1's Introduction

Github 獨立開發模式

  • 這是什麼東西
  • 所以什麼是 Git
  • 為什麼要使用 Github
  • 如何開始使用 Github
    • 建立 repo
    • 上傳 repo
  • 版本控制

步驟

# 初始化
> git init

# 增加一個遠端連接(origin)
> git remote add origin https://github.com/madeinfree/GITHUB-DAY-1.git

# 查看遠端連接資訊
> git remote -v
origin	https://github.com/madeinfree/GITHUB-DAY-1.git (fetch)
origin	https://github.com/madeinfree/GITHUB-DAY-1.git (push)

# 查看檔案更動訊息
> git status
.gitignore
note.md

# 確認要被記錄的檔案
> git add file_name 或 .

# 回到上一動
> git reset

# 查看 commit 紀錄(log)
> git log

# 暫時儲存目前改動的東西
> git stash
# 刪除 stash 暫存
> git stash drop 0
# 取出 stash 內容
> git stash pop

# 清除改動內容
> git checkout -- note.md

# 關鍵字 rebase
> git rebase origin/master

移除不需要的東西 .gitignore

建立一個 .gitignore 檔案

https://github.com/

github-day-1's People

Contributors

madeinfree avatar

Watchers

 avatar  avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.