Skip to content

Commit d68d8bb

Browse files
committed
adicionado tutorial basico sobre github
1 parent 1f05195 commit d68d8bb

File tree

3 files changed

+83
-1
lines changed

3 files changed

+83
-1
lines changed
Lines changed: 57 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,57 @@
1+
Como fazer fork, clone, push pull-request no Github
2+
####################################################
3+
4+
:date: 2014-05-13 01:40
5+
:tags: tutorial, git, github
6+
:category: Tutoriais
7+
:slug: como-fazer-fork-clone-push-pull-request-no-github
8+
:author: Fábio C. Barrionuevo da Luz
9+
10+
:github: luzfcb
11+
:twitter: luzfcb
12+
:linkedin: fabiocbarrionuevo
13+
:facebook: fabiocbarrionuevo
14+
15+
Como fazer fork, clone, push pull-request no Github, ou como contribuir com projetos open-source
16+
17+
Neste video, ensino o básico que vai lhe ajudar a dar seus primeiros passos no git, github e talvez lhe dar a habilidade necessaria para contribuir com postagens neste blog ou em qualquer outro projeto que você quiser.
18+
19+
20+
.. youtube:: am1XMMKk0UI
21+
22+
23+
Referências uteis:
24+
------------------
25+
26+
27+
O que é URL Limpa: http://en.wikipedia.org/wiki/Clean_URL
28+
29+
Livro oficial do Git em Portugues: http://git-scm.com/book/pt-br/
30+
31+
Outros protocolos para clonar alem do HTTPS : http://git-scm.com/book/pt-br/Git-no-Servidor-Os-Protocolos
32+
33+
SmartGit/Hg - Cliente Grafico para o git feito em Java com versões para Windows/Linux/Mac: http://www.syntevo.com/smartgithg/download
34+
35+
36+
Tutoriais:
37+
**********
38+
39+
Curso completo "Começando com o Git" do Fabio Akita: http://www.akitaonrails.com/2010/08/17/screencast-comecando-com-git
40+
41+
Git e GitHub para Iniciantes da Loiane Groner: http://www.loiane.com/2013/11/screencast-git-e-github-para-iniciantes/
42+
43+
Tutorial oficial do Github: http://try.github.com
44+
45+
Tutorial Aprendendo Git Branching: http://pcottle.github.io/learnGitBranching/?demo
46+
47+
48+
Arquivo .gitignore:
49+
*******************
50+
51+
O que é o arquivo .gitignore: http://pt-br.gitready.com/iniciante/2009/01/19/ignoring-files.html
52+
53+
Gerador de arquivo .gitignore: http://www.gitignore.io/
54+
55+
Exemplos de arquivo .gitignore para diversas linguagens: https://github.com/github/gitignore
56+
57+

pelicanconf.py

Lines changed: 24 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,30 @@
4646

4747
# Plugins
4848
PLUGIN_PATH = 'plugins'
49-
PLUGINS = ['gravatar']
49+
50+
PLUGINS = [
51+
'gravatar',
52+
'sitemap',
53+
'pelican_youtube', # funciona somente com arquivos rst
54+
'pelican_vimeo', # funciona somente com arquivos rst
55+
'gzip_cache', # deve ser o ultimo plugin
56+
57+
]
58+
59+
60+
SITEMAP = {
61+
'format': 'xml',
62+
'priorities': {
63+
'articles': 0.5,
64+
'indexes': 0.5,
65+
'pages': 0.5
66+
},
67+
'changefreqs': {
68+
'articles': 'monthly',
69+
'indexes': 'daily',
70+
'pages': 'monthly'
71+
}
72+
}
5073

5174
# Theme
5275
THEME = 'theme'

requirements.txt

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,4 @@
11
pelican
22
Markdown
3+
pelican-youtube
4+
pelican-vimeo

0 commit comments

Comments
 (0)