git init
Initialized empty Git repository in /.git/
Success!
to see what the current state of our project is
| Sub SlideMasterCleanup() | |
| ' This macro cleans up all the unused slide layouts in your Slide Master. | |
| ' Primarily used for reducing file size, especially if slide layouts make use of large HD images. | |
| ' Should ideally be used once the contents are near-complete, to ensure that you do not need those additional slide layouts. | |
| Dim i As Integer | |
| Dim j As Integer | |
| Dim oPres As Presentation | |
| Set oPres = ActivePresentation |
| using System; | |
| using System.Configuration; | |
| using System.IO; | |
| using System.IO.Compression; | |
| using System.Linq; | |
| using System.Net; | |
| using System.Net.Http; | |
| using System.Net.Http.Headers; | |
| using System.Security.Cryptography; | |
| using System.Security.Cryptography.Pkcs; |
People
:bowtie: |
๐ :smile: |
๐ :laughing: |
|---|---|---|
๐ :blush: |
๐ :smiley: |
:relaxed: |
๐ :smirk: |
๐ :heart_eyes: |
๐ :kissing_heart: |
๐ :kissing_closed_eyes: |
๐ณ :flushed: |
๐ :relieved: |
๐ :satisfied: |
๐ :grin: |
๐ :wink: |
๐ :stuck_out_tongue_winking_eye: |
๐ :stuck_out_tongue_closed_eyes: |
๐ :grinning: |
๐ :kissing: |
๐ :kissing_smiling_eyes: |
๐ :stuck_out_tongue: |
Inspired by dannyfritz/commit-message-emoji
See also gitmoji.
| Commit type | Emoji |
|---|---|
| Initial commit | ๐ :tada: |
| Version tag | ๐ :bookmark: |
| New feature | โจ :sparkles: |
| Bugfix | ๐ :bug: |
git clone [email protected]:YOUR-USERNAME/YOUR-FORKED-REPO.git
cd into/cloned/fork-repo
git remote add upstream git://github.com/ORIGINAL-DEV-USERNAME/REPO-YOU-FORKED-FROM.git
git fetch upstream
| matrix: | |
| include: | |
| - language: node_js | |
| node_js: | |
| - "stable" | |
| cache: | |
| directories: | |
| - "node_modules" | |
| before_script: | |
| - "cd src/AwesomeCMSCore/AwesomeCMSCore" |