Skip to main content

Biblioteca numérica básica para o curso de programação 2.

Project description

CB2325NumericaG07

Trabalho AV2 de Programação 2. Grupo 07

Instruções para os alunos (Tutorial git):

Git é um sistema de controle de versão que ajuda a rastrear mudanças no seu código e a colaborar com outras pessoas.

1. Configuração Inicial (Para o primeiro uso)

  • Configure seu nome e email (usados para identificar seus commits):
    git config --global user.name "Seu nome"
    git config --global user.email "al.nome.sobrenome@impatech.edu.br"
    

2. Clonando o Repositório

  • Para o projeto existente (remoto): Clone o repositório da web:
    git clone https://github.com/Mateus-Band/CB2325NumericaG07.git
    

3. O Fluxo Básico: Modificar -> Preparar -> Salvar

  • Modifique seus arquivos normalmente.
  • Prepare (Stage): Escolha quais mudanças você quer salvar no repositório online.
    • Para preparar um arquivo específico:
      git add <nome_do_arquivo_modificado>
      
    • Para preparar todos os arquivos modificados/novos:
      git add .
      
  • Salve (Commit): Crie uma versão permanente das mudanças preparadas, com uma mensagem bem descritiva.
    git commit -m "Sua mensagem clara sobre o que mudou (MUITO IMPORTANTE!)"
    
    PARTE MAIS IMPORTANTE, SUA NOTA ESTÁ EM BOA PARTE AQUI!

4. Verificando o Status

  • Para ver quais arquivos foram modificados, quais estão preparados (processo de commit) e quais não estão sendo rastreados:
    git status
    

5. Enviando para o repositórios online (GitHub)

  • Enviar seus commits: Mande os commits locais para o repositório remoto (ex: GitHub). Geralmente, para a branch main ou master:
    git push origin main
    
  • Receber atualizações: Baixe as últimas mudanças do repositório remoto e comece seu trabalho local:
    git pull origin main
    

6. Vendo o Histórico

  • Para ver a lista de commits feitos:
    git log
    
  • Para uma versão mais resumida:
    git log --oneline
    

7. Desfazendo Coisas (Avançado)

  • Descartar mudanças não preparadas em um arquivo:
    git checkout -- <nome_do_arquivo>
    
  • Tirar um arquivo da área de stage (mas manter as mudanças):
    git reset HEAD <nome_do_arquivo>
    

8. Ajuda!

  • Para obter ajuda sobre qualquer comando:
    git help <nome_do_comando>
    # Ex: git help commit
    
    Ou pergunte aos outros :-)

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

cb2325numericag07-0.1.2.tar.gz (3.7 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

cb2325numericag07-0.1.2-py3-none-any.whl (4.5 kB view details)

Uploaded Python 3

File details

Details for the file cb2325numericag07-0.1.2.tar.gz.

File metadata

  • Download URL: cb2325numericag07-0.1.2.tar.gz
  • Upload date:
  • Size: 3.7 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for cb2325numericag07-0.1.2.tar.gz
Algorithm Hash digest
SHA256 de1844b73393ffa9aa070210a1368b33a309a2faa61452a858a0d1bb671068de
MD5 217b034e94b3230927a928b6bfc90eca
BLAKE2b-256 40f9bd72174de9197a067b112898ac2998949838c6bdf7fb92287ae3057bd05a

See more details on using hashes here.

Provenance

The following attestation bundles were made for cb2325numericag07-0.1.2.tar.gz:

Publisher: python-publish.yml on Mateus-Band/CB2325NumericaG07

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file cb2325numericag07-0.1.2-py3-none-any.whl.

File metadata

File hashes

Hashes for cb2325numericag07-0.1.2-py3-none-any.whl
Algorithm Hash digest
SHA256 808a93e587dc700c858c99b4edd2b42372f0eff66b3cb95edf197e40296f5dc9
MD5 7b5fbb2b8c1a36e641a4b0a3bb7135d4
BLAKE2b-256 a3524c851799a2d9fcaa5573ecc2efea4ebb63f058afae45ffd91e9e3f39eb2e

See more details on using hashes here.

Provenance

The following attestation bundles were made for cb2325numericag07-0.1.2-py3-none-any.whl:

Publisher: python-publish.yml on Mateus-Band/CB2325NumericaG07

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page