Start a GIT Repository Tutorial

Start a GIT Repository

The first step in creating a GIT repository is finding where to actually create it. You can either create the repository on your hosting account or use a remote GIT repository service. If you decide to use your hosting account, you can check our SG-GIT Tutorial for instructions how to do that.

If you choose to use an external GIT repository, one of the best and most popular is GitHub. This service allows you to upload and manage your GIT repositories. This way different programmers can take part in the collaborative development of your software. They can fork your projects, send pull requests, create issues, and monitor the development of your applications.

Once you are ready with the development of your application, you can easily clone your project to your SiteGround account and test it using each one of the many PHP versions which we offer.

To get started with GitHub, fill in the desired username, email and password and click on the Sign up for GitHub button.

On the next page, choose the plan that best suits your needs. The free one comes with unlimited public repositories and unlimited public collaborators. The other plan comes with unlimited numbers of private repositories, collaborators and additional extras.

Once you complete the signup process, you can create your first repository by clicking the Start a Project button.

Enter the desired repository name, an optional description and choose whether the repository should be visible to the public or it should be private. Then click the Create repository button.

Your repository will be automatically created and on the next page you will find instructions how to setup your repository.

原文地址:https://www.cnblogs.com/karmapeng/p/12178796.html

时间: 2024-10-12 03:32:12

Start a GIT Repository Tutorial的相关文章

How to Manage your GIT Repository Tutorial

GIT Repository Management This tutorial explains how to use GIT to create a project, add files, commit modifications and upload them in the remote repository at GitHub. First, you should generate an SSH key. You must have at least one SSH public key

git: fatal: Not a git repository (or any of the parent directories): .git

在看书 FlaskWeb开发:基于Python的Web应用开发实战 时,下载完源码后 git clone https://github.com/miguelgrinberg/flasky.git 试着 切换到 提交历史 1a, $ git checkout 1a,出现error: fatal: Not a git repository (or any of the parent directories): .git 这个提示表明现在不在一个git repository目录下,需要切换到flask

把Git Repository建到U盘上去

Git很火.原因有三: 它是大神Linus Torvalds的作品,天然地具备神二代的气质和品质: 促进了生产力的发展,Git的分布式版本控制理念,并非首创,但非常适合开源社区的协作方式(不存在master-slave的关系) GitHub GitHub很好,号称代码界的facebook. facebook,twitter,Microsoft,vmware,redhat,LinkedIn,Yahoo等公司都在GitHub上有建立数目不等的repositories.一些知名开源项目,例如jQuer

解决:fatal: Not a git repository (or any of the parent directories): .git

fatal: Not a git repository (or any of the parent directories): .git 在用个git上传android项目时发现 git add file添加文件时出现这样错误: fatal: Not a git repository (or any of the parent directories): .git 提示说没有.git这样一个目录,解决办法如下: 接着在下一行直接输入git init就可以了!

新目录下使用git管理,未配置.git目录,报错fatal: Not a git repository (or any of the parent directories): .git

fatal: Not a git repository (or any of the parent directories): .git 第一次用Git,遇到这个错误提示,原来是这样的: fatal: Not a git repository (or any of the parent directories): .git This tells you that the directory you're in is not a git repository. Before you can add

git 解决fatal: Not a git repository

我用 git remote add origin [email protected]:michaelliao/learngit.git 添加远程库时提示: fatal: Not a git repository (or any of the parent directories): .git 提示说没有.git这样一个目录, 解决办法如下: 当时发现自己所在目录并非git初始化库目录,所以跳转到git库,重新运行ok;

getting “fatal: not a git repository: '.'” when using post-update hook to execute 'git pull' on another repo

Here is the script that ultimately worked. I think the bit I was originally missing that prevented it from working remotely was the unset GIT_DIR #!/bin/shcd /path/to/working-copy/ || exitunset GIT_DIRgit pull repo branch exec git-update-server-info

把Git Repository建到U盘上去(转)

把Git Repository建到U盘上去 转 把Git Repository建到U盘上去 Git很火.原因有三: 它是大神Linus Torvalds的作品,天然地具备神二代的气质和品质: 促进了生产力的发展,Git的分布式版本控制理念,并非首创,但非常适合开源社区的协作方式(不存在master-slave的关系) GitHub GitHub很好,号称代码界的facebook. facebook,twitter,Microsoft,vmware,redhat,LinkedIn,Yahoo等公司

Git CMD - init: Create an empty Git repository or reinitialize an existing one

命令格式 git init [-q | --quiet] [--bare] [--template=<template_directory>] [--separate-git-dir <git dir>] [--shared[=<permissions>]] [directory] 命令参数 --quiet, -q 安静模式,只打印错误和警告信息. 实例 a) 创建版本库 [[email protected] git]$ mkdir hello_git [[email