This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
<body> | |
<p id="demo">Content goes here</p> | |
</body> | |
*/ | |
// For an introduction to the Blank template, see the following documentation: | |
// http://go.microsoft.com/fwlink/?LinkId=232509 | |
(function (window, $, undefined) { | |
"use strict"; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#! /bin/bash | |
### My use case may be unique. We have 152 projects that we are transferring from VSS and SVN to Git. | |
### We don’t care about the prior source control history. We are starting fresh with the most recent | |
### version of each project. | |
for i in * ; do ### For each item in the active directory | |
if [ -d "$i" ]; then ### If the item is a folder | |
echo | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#! /bin/bash | |
### My use case may be unique. We have 146 projects that we transferred from VSS and SVN to Git. | |
### We made file and code changes in each project within a local branch. Now we want to merge | |
### the changes back into the develop branch. We also want to push the changes up to origin. | |
for i in * ; do ### For each item in the active directory | |
if [ -d "$i" ]; then ### If the item is a folder | |
echo | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"eventId": "274377726" | |
} |