mirror of
https://github.com/github/gitignore
synced 2024-11-22 19:54:22 +01:00
Arquivo gitignore para o Lazarus e Freepascal
This commit is contained in:
parent
af88d8e001
commit
38ce07730b
@ -3,7 +3,7 @@
|
|||||||
*.dll
|
*.dll
|
||||||
*.so
|
*.so
|
||||||
*.dylib
|
*.dylib
|
||||||
# *.lrs
|
*.lrs
|
||||||
*.res
|
*.res
|
||||||
*.compiled
|
*.compiled
|
||||||
*.dbg
|
*.dbg
|
||||||
@ -22,9 +22,18 @@
|
|||||||
|
|
||||||
# Lazarus backups and unit output folders.
|
# Lazarus backups and unit output folders.
|
||||||
# These can be changed by user in Lazarus/project options.
|
# These can be changed by user in Lazarus/project options.
|
||||||
|
bin/
|
||||||
backup/
|
backup/
|
||||||
*.bak
|
bak/
|
||||||
lib/
|
lib/
|
||||||
|
log/
|
||||||
|
logs/
|
||||||
|
tmp/
|
||||||
|
temp/
|
||||||
|
superado/
|
||||||
|
_superado/
|
||||||
|
modules/
|
||||||
|
*.bak
|
||||||
|
|
||||||
# Application bundle for Mac OS
|
# Application bundle for Mac OS
|
||||||
*.app/
|
*.app/
|
||||||
|
26
pushmain.sh
26
pushmain.sh
@ -1,26 +0,0 @@
|
|||||||
#!/bin/bash
|
|
||||||
|
|
||||||
TextoCommit="$1"
|
|
||||||
|
|
||||||
# Associa o repositório remoto ao repositório local.
|
|
||||||
git remote add origin git@github.com:paulosspacheco/gitignore.git
|
|
||||||
|
|
||||||
# Renomeie o branch atual para main
|
|
||||||
# O comando branch -M não precisa ser feito a todo momento, porque o git sempre envia para
|
|
||||||
# o ultimo ramo selecionando.
|
|
||||||
git branch -M main
|
|
||||||
|
|
||||||
# Este comando pode ser executado várias vezes antes de um commit.
|
|
||||||
git add .
|
|
||||||
|
|
||||||
# Use o <msg> fornecido como a mensagem de confirmação.
|
|
||||||
git commit -a -m "$TextoCommit"
|
|
||||||
|
|
||||||
# Envia as alterações locais para o repositório remoto.
|
|
||||||
git push -u origin main
|
|
||||||
|
|
||||||
# imprime o status atual do repositório
|
|
||||||
git status
|
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue
Block a user