Git Product home page Git Product logo

flashtool's Introduction

Apuentes para salir de apuros con Git

  • Instalamos Git desde cero:
    • winget install --id Git.Git -e --source winget

Hacemos login o acceso a GitHub.

Carga por primera vez desde nuestro pc a git.

  • Inicializamos el repositorio:
    • git init
  • Agregamos todos los archivos:
    • git add .
  • Creamos el commit, importante indicar que cambio se realizo
    • git commit -m "first commit"
  • Creamos y seleccionamos la rama a usar
    • git branch -M main
  • Indicamos hacia que repositorio vamos a apuntar:
    • git remote add origin "Aqui ponemos la url de su repositorio, temina en .git"
  • Subimos los cambios
    • git push -u origin main

Carga de cambios

  • Agregamos todos los archivos:
    • git add .
  • Creamos el commit, importante indicar que cambio se realizo
    • git commit -m "first commit"
  • Subimos los cambios
    • git push -u origin main

Visual Studio Code:

  • cannot be loaded because running scripts is disabled on this system. For more information, see about_Execution_Policies at https:/go.microsoft.com/fwlink/?LinkID=135170. + CategoryInfo SecurityError: (:) [], PSSecurityException + FullyQualifiedErrorId : UnauthorizedAccess

Este error es producido por que no tenemos permisos para ejecutar Scripts en PowerShell.

  • Ejecutamos PowerShell en modo administrador y escribimos lo siguiente: Set-ExecutionPolicy Unrestricted
  • Con ello ya deberiamos poder ejecutar correctamente nuestros scripts

flashtool's People

Contributors

androxyde avatar doomlord avatar russel5 avatar squallatf avatar xperiaoverlay avatar

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.