Github for beginners and my future references

OK. I have been trying to learn github for really a long time, but (yes, there is always a but) I just couldn‘t know how to use it. This article will mainly record a bunch of command lines in the github for my or beginners future reference.

I give my credits to this and thisarticle.

I have to admit that I am a somewhat perfectionist: I always want to include as many/detailed information as I can at one time. I realized that this is not good because I am easily distracted and lost, more importantly, depressed and frustrated. So I won‘t try to include all of the commands but those frequently-used. The only way to drive things moving forward is to do it quick and dirty. You can always refine it later if necessary. And this is called executive ability.

according to this article:

0. command line cd to your local project repository

1. type git init to initialize this local repository as a git repo

2. git add . to add files

3. git commit -m ‘some message‘

4. git remote add origin <some remote repo url>

5. git push origin master (you might need to input your username and password of github account.

时间: 2024-10-03 14:41:52

Github for beginners and my future references的相关文章

GitHub For Beginners: Don’t Get Scared, Get Started

It's 2013, and there's no way around it: you need to learn how to use GitHub.2 Why? Because it's a social network that has completely changed the way we work. Having started as a developer's collaborative platform, GitHub is now the largest online st

【转】The most comprehensive Data Science learning plan for 2017

I joined Analytics Vidhya as an intern last summer. I had no clue what was in store for me. I had been following the blog for some time and liked the community, but did not know what to expect as an intern. The initial few days were good – all the in

Java 注释

Java 注释 标签 : Java基础 五月份得知入职阿里云OS, 才开始学Java, 断断续续学习/使用半年, 越来越喜欢这个语言/工具. 后来被拥抱变化之后, 拿到的大部分offer是Java服务端研发; 一路走来, 踩了很多坑, 也有了一点小小的心得, 而且博客已经停更几个月, 今天就以博客形式把他记录下来吧. 2015下半年第一篇博客, 从最基础的Java注释开始: 程序员圈有一个笑话 最讨厌在写代码的时候写注释, 最讨厌别人的代码里面不写注释. 为什么写注释? 我自己亲身经历: 这段时

SQL Server Extended Events 进阶 1:从SQL Trace 到Extended Events

http://www.sqlservercentral.com/articles/Stairway+Series/134869/ SQL server 2008 中引入了Extended Events 用以替换SQL Trace. 然而在第一个版本中并没有为用户提供UI,因此使用Extended Events并不是很方便.SQL Server 2012及时修正了这一点,将UI管理工具集成在SSMS中, 这就意味着我们不需要再为了查询Event XML而学习使用XQuery了.因此跟多的DBA和开

JSP Response Set Status

JSP Response Set Status In this tutorial you will learn about how to set the HTTP status code in JSP. In Java you can specify a HTTP-specific functionality regarding to send response. An interface HttpServletResponse provides these facility. This int

http各种状态码大全查询

10 Status Code Definitions Each Status-Code is described below, including a description of which method(s) it can follow and any metainformation required in the response. 10.1 Informational 1xx This class of status code indicates a provisional respon

11 Python Libraries You Might Not Know

11 Python Libraries You Might Not Know by Greg | January 20, 2015 There are tons of Python packages out there. So many that no one man or woman could possibly catch them all. PyPi alone has over 47,000 packages listed! Recently, with so many data sci

Profiler跟踪高消耗的语句需添加哪些事件

通常接手一台数据库服务器后,我们会开启Profiler跟踪来了解SQL Server的繁忙情况.我们首先会想到的是监控CPU或Duration超过某一阈值的语句/过程.那么所创建的trace添加哪些事件和列比较合适?新建跟踪,默认模板会选择Audit Login.Audit Logout.ExistingConnection.RPC:Completed.SQL:BatchCompleted.SQL:BatchStarting这些事件.但我们稍作修改,下表中给出跟踪查询结束的事件: 事件类 事件

http返回状态码总结

400 Invalid syntax. 语法问题 401 Access denied. 访问拒绝 402 Payment required. 必须完整 403 Request forbidden. 请求被禁止 404 Object not found. 对象没有找到 405 Method is not allowed. 方法不允许 406 No response acceptable to client found. 客户端没有响应 407 Proxy authentication requir