Skip to content

Instantly share code, notes, and snippets.

View oshingc's full-sized avatar

María Alejandra Gómez C. oshingc

  • Verizon Peru
  • Lima, Perú
View GitHub Profile
@oshingc
oshingc / Git Commands
Last active July 27, 2023 03:07
Git Commands - Saving changes to a new Branch
//Get the project
git clone git@github.com:username/repositoryname.git
//Make changes to the project
//Problem! You made changes to the project beeing on master branch, how do you save those changes to a new branch?
//Save a stack
git stash
//Check actual file mode
@oshingc
oshingc / debug
Created March 23, 2024 16:28
debug oshingc
<html>
<head>
<script>
var numero1 = "3";
var numero2 = "4";
console.log("suma", suma(numero1, numero2));
function suma(a, b){
return a + b;
}