2016-08-23 3 views
0

Я следую за this гидом, и у меня есть все на своем месте, но в файловом хостинге. Я потерялся здесь:Хостинг файла на github (отправка файла в PyPI)

Download_url - это ссылка на размещенный файл с кодом вашего репозитория. Github будет размещать это для вас, но только если вы создадите тег git. В вашем репозитории введите: git tag 0.1 -m «Добавляет тег, чтобы мы могли поместить его в PyPI». Затем введите git tag, чтобы показать список тегов - вы должны увидеть 0,1 в списке. Введите git push -tags origin master, чтобы обновить свой код в Github с помощью последней информации о тегах. Github создает tarballs для загрузки по адресу https://github.com/ {имя_пользователя}/{module_name}/tarball/{tag}.

Должен ли я клонировать существующий репозиторий github на свой компьютер с помощью оболочки git?

Как новичок, я могу сказать, что кодирование кажется, 5x проще и 5x больше удовольствия, чем пух окружающего фактического кодирования :((для пуха чтения монтажников, проекты каркасных каталогов и т.д.)

+0

может быть, это будет ударное его туда, где кто-то может увидеть его, начинающий немой вопрос, хотя это –

ответ

0
C:\Users\Dave\Desktop\distributing> git clone https://github.com/dmt257/hellodmt2.git 
Cloning into 'hellodmt2'... 
remote: Counting objects: 8, done. 
remote: Compressing objects: 100% (6/6), done. 
remote: Total 8 (delta 0), reused 0 (delta 0), pack-reused 0 
Unpacking objects: 100% (8/8), done. 
Checking connectivity... done. 
C:\Users\Dave\Desktop\distributing> git-tag 0.1 -m "adds a tag so that we can out this on PyPI." 
git-tag : The term 'git-tag' is not recognized as the name of a cmdlet, function, script file, or operable program. 
Check the spelling of the name, or if a path was included, verify that the path is correct and try again. 
At line:1 char:1 
+ git-tag 0.1 -m "adds a tag so that we can out this on PyPI." 
+ ~~~~~~~ 
    + CategoryInfo   : ObjectNotFound: (git-tag:String) [], CommandNotFoundException 
    + FullyQualifiedErrorId : CommandNotFoundException 

C:\Users\Dave\Desktop\distributing> ls 


    Directory: C:\Users\Dave\Desktop\distributing 


Mode    LastWriteTime   Length Name 
----    -------------   ------ ---- 
d-----  23/08/2016  07:56    helloDistribution 
d-----  24/08/2016  06:26    hellodmt2 
d-----  23/08/2016  14:16    hellodmt2Distribution 
d-----  23/08/2016  08:02    hellodmtDistribution 


C:\Users\Dave\Desktop\distributing> cd .\hellodmt2 
C:\Users\Dave\Desktop\distributing\hellodmt2 [master ≡]> git tag 0.1 -m "Adds a tag so that we can put this on PyPI." 
C:\Users\Dave\Desktop\distributing\hellodmt2 [master ≡]> git tag 
0.1 
C:\Users\Dave\Desktop\distributing\hellodmt2 [master ≡]> git push --tags origin master 
Counting objects: 1, done. 
Writing objects: 100% (1/1), 180 bytes | 0 bytes/s, done. 
Total 1 (delta 0), reused 0 (delta 0) 
To https://github.com/dmt257/hellodmt2.git 
* [new tag]   0.1 -> 0.1 
C:\Users\Dave\Desktop\distributing\hellodmt2 [master ≡]> 

ссылки как представляется, этот формат (по выбору высвобождает в GitHub счет), а не как показано в руководстве:.

https://github.com/dmt257/hellodmt2/archive/0.1.tar.gz

+0

.. ............. –