My github repo does not accept some js files?





.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty{ height:90px;width:728px;box-sizing:border-box;
}







0















I installed a jhipster project.After that I want to upload my project to github but some files js files(jquery.js,angular.js and ui-swagger.js files) cannot be uploaded.The other files are okey.I can see other files in my repo.



my .gitignore file contains these lines :



# Compiled class file
*.class
# Log file
*.log
# BlueJ files
*.ctxt
# Mobile Tools for Java (J2ME)
.mtj.tmp/
# Package Files #
*.jar
*.war
*.nar
*.ear
*.zip
*.tar.gz
*.rar
# virtual machine crash logs, see
http://www.java.com/en/download/help/error_hotspot.xml
hs_err_pid*
# Project Specific
/target/www/**
/src/test/javascript/coverage/
/src/test/javascript/PhantomJS*/

# Node
/node/
node_tmp/
node_modules/
npm-debug.log.*


# SASS
.sass-cache/

# Eclipse
*.pydevproject
.project
.metadata
tmp/
tmp/**/*
*.tmp
*.bak
*.swp
*~.nib
local.properties
.classpath
.settings/
.loadpath
.factorypath
/src/main/resources/rebel.xml

# External tool builders
.externalToolBuilders/**

# Locally stored "Eclipse launch configurations"
*.launch

# CDT-specific
.cproject

# PDT-specific
.buildpath

# Intellij
.idea/
*.iml
*.iws
*.ipr
*.ids
*.orig
classes/


# Visual Studio Code
.vscode/


# Maven
/log/
/target/


# Gradle
.gradle/
/build/


# Package Files
*.jar
*.war
*.ear
*.db


# Windows
# Windows image file caches
Thumbs.db

# Folder config file
Desktop.ini


# Mac OSX
.DS_Store
.svn

# Thumbnails
._*

# Files that might appear on external disk
.Spotlight-V100
.Trashes


# Directories
/bin/
/deploy/


# Logs
*.log


# Others
*.class
*.*~
*~
.merge_file*


# Gradle Wrapper

!gradle/wrapper/gradle-wrapper.jar

# Maven Wrapper
!.mvn/wrapper/maven-wrapper.jar


# ESLint
.eslintcache


How can I solve that problem?Just 3 files cannot be uploaded.










share|improve this question

























  • Can you update the question with the contents of your .gitignore file?

    – Sashi
    Jan 3 at 5:47


















0















I installed a jhipster project.After that I want to upload my project to github but some files js files(jquery.js,angular.js and ui-swagger.js files) cannot be uploaded.The other files are okey.I can see other files in my repo.



my .gitignore file contains these lines :



# Compiled class file
*.class
# Log file
*.log
# BlueJ files
*.ctxt
# Mobile Tools for Java (J2ME)
.mtj.tmp/
# Package Files #
*.jar
*.war
*.nar
*.ear
*.zip
*.tar.gz
*.rar
# virtual machine crash logs, see
http://www.java.com/en/download/help/error_hotspot.xml
hs_err_pid*
# Project Specific
/target/www/**
/src/test/javascript/coverage/
/src/test/javascript/PhantomJS*/

# Node
/node/
node_tmp/
node_modules/
npm-debug.log.*


# SASS
.sass-cache/

# Eclipse
*.pydevproject
.project
.metadata
tmp/
tmp/**/*
*.tmp
*.bak
*.swp
*~.nib
local.properties
.classpath
.settings/
.loadpath
.factorypath
/src/main/resources/rebel.xml

# External tool builders
.externalToolBuilders/**

# Locally stored "Eclipse launch configurations"
*.launch

# CDT-specific
.cproject

# PDT-specific
.buildpath

# Intellij
.idea/
*.iml
*.iws
*.ipr
*.ids
*.orig
classes/


# Visual Studio Code
.vscode/


# Maven
/log/
/target/


# Gradle
.gradle/
/build/


# Package Files
*.jar
*.war
*.ear
*.db


# Windows
# Windows image file caches
Thumbs.db

# Folder config file
Desktop.ini


# Mac OSX
.DS_Store
.svn

# Thumbnails
._*

# Files that might appear on external disk
.Spotlight-V100
.Trashes


# Directories
/bin/
/deploy/


# Logs
*.log


# Others
*.class
*.*~
*~
.merge_file*


# Gradle Wrapper

!gradle/wrapper/gradle-wrapper.jar

# Maven Wrapper
!.mvn/wrapper/maven-wrapper.jar


# ESLint
.eslintcache


How can I solve that problem?Just 3 files cannot be uploaded.










share|improve this question

























  • Can you update the question with the contents of your .gitignore file?

    – Sashi
    Jan 3 at 5:47














0












0








0








I installed a jhipster project.After that I want to upload my project to github but some files js files(jquery.js,angular.js and ui-swagger.js files) cannot be uploaded.The other files are okey.I can see other files in my repo.



my .gitignore file contains these lines :



# Compiled class file
*.class
# Log file
*.log
# BlueJ files
*.ctxt
# Mobile Tools for Java (J2ME)
.mtj.tmp/
# Package Files #
*.jar
*.war
*.nar
*.ear
*.zip
*.tar.gz
*.rar
# virtual machine crash logs, see
http://www.java.com/en/download/help/error_hotspot.xml
hs_err_pid*
# Project Specific
/target/www/**
/src/test/javascript/coverage/
/src/test/javascript/PhantomJS*/

# Node
/node/
node_tmp/
node_modules/
npm-debug.log.*


# SASS
.sass-cache/

# Eclipse
*.pydevproject
.project
.metadata
tmp/
tmp/**/*
*.tmp
*.bak
*.swp
*~.nib
local.properties
.classpath
.settings/
.loadpath
.factorypath
/src/main/resources/rebel.xml

# External tool builders
.externalToolBuilders/**

# Locally stored "Eclipse launch configurations"
*.launch

# CDT-specific
.cproject

# PDT-specific
.buildpath

# Intellij
.idea/
*.iml
*.iws
*.ipr
*.ids
*.orig
classes/


# Visual Studio Code
.vscode/


# Maven
/log/
/target/


# Gradle
.gradle/
/build/


# Package Files
*.jar
*.war
*.ear
*.db


# Windows
# Windows image file caches
Thumbs.db

# Folder config file
Desktop.ini


# Mac OSX
.DS_Store
.svn

# Thumbnails
._*

# Files that might appear on external disk
.Spotlight-V100
.Trashes


# Directories
/bin/
/deploy/


# Logs
*.log


# Others
*.class
*.*~
*~
.merge_file*


# Gradle Wrapper

!gradle/wrapper/gradle-wrapper.jar

# Maven Wrapper
!.mvn/wrapper/maven-wrapper.jar


# ESLint
.eslintcache


How can I solve that problem?Just 3 files cannot be uploaded.










share|improve this question
















I installed a jhipster project.After that I want to upload my project to github but some files js files(jquery.js,angular.js and ui-swagger.js files) cannot be uploaded.The other files are okey.I can see other files in my repo.



my .gitignore file contains these lines :



# Compiled class file
*.class
# Log file
*.log
# BlueJ files
*.ctxt
# Mobile Tools for Java (J2ME)
.mtj.tmp/
# Package Files #
*.jar
*.war
*.nar
*.ear
*.zip
*.tar.gz
*.rar
# virtual machine crash logs, see
http://www.java.com/en/download/help/error_hotspot.xml
hs_err_pid*
# Project Specific
/target/www/**
/src/test/javascript/coverage/
/src/test/javascript/PhantomJS*/

# Node
/node/
node_tmp/
node_modules/
npm-debug.log.*


# SASS
.sass-cache/

# Eclipse
*.pydevproject
.project
.metadata
tmp/
tmp/**/*
*.tmp
*.bak
*.swp
*~.nib
local.properties
.classpath
.settings/
.loadpath
.factorypath
/src/main/resources/rebel.xml

# External tool builders
.externalToolBuilders/**

# Locally stored "Eclipse launch configurations"
*.launch

# CDT-specific
.cproject

# PDT-specific
.buildpath

# Intellij
.idea/
*.iml
*.iws
*.ipr
*.ids
*.orig
classes/


# Visual Studio Code
.vscode/


# Maven
/log/
/target/


# Gradle
.gradle/
/build/


# Package Files
*.jar
*.war
*.ear
*.db


# Windows
# Windows image file caches
Thumbs.db

# Folder config file
Desktop.ini


# Mac OSX
.DS_Store
.svn

# Thumbnails
._*

# Files that might appear on external disk
.Spotlight-V100
.Trashes


# Directories
/bin/
/deploy/


# Logs
*.log


# Others
*.class
*.*~
*~
.merge_file*


# Gradle Wrapper

!gradle/wrapper/gradle-wrapper.jar

# Maven Wrapper
!.mvn/wrapper/maven-wrapper.jar


# ESLint
.eslintcache


How can I solve that problem?Just 3 files cannot be uploaded.







angular github jhipster






share|improve this question















share|improve this question













share|improve this question




share|improve this question








edited Jan 3 at 6:01







kemal

















asked Jan 3 at 5:44









kemalkemal

94




94













  • Can you update the question with the contents of your .gitignore file?

    – Sashi
    Jan 3 at 5:47



















  • Can you update the question with the contents of your .gitignore file?

    – Sashi
    Jan 3 at 5:47

















Can you update the question with the contents of your .gitignore file?

– Sashi
Jan 3 at 5:47





Can you update the question with the contents of your .gitignore file?

– Sashi
Jan 3 at 5:47












2 Answers
2






active

oldest

votes


















0














Did you stage these files? Try git add <file_name> and then committing and pushing them to remote.






share|improve this answer
























  • Thank you very much.It solved my problem

    – kemal
    Jan 3 at 6:14



















0














Have you checked .gitignore file ? or run command to see which files are being tracked




git ls-tree -r branchname --name-only







share|improve this answer
























  • I installed my .gitignore file.I use intellij Idea to send files to github

    – kemal
    Jan 3 at 6:03














Your Answer






StackExchange.ifUsing("editor", function () {
StackExchange.using("externalEditor", function () {
StackExchange.using("snippets", function () {
StackExchange.snippets.init();
});
});
}, "code-snippets");

StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "1"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);

StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});

function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});


}
});














draft saved

draft discarded


















StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f54016926%2fmy-github-repo-does-not-accept-some-js-files%23new-answer', 'question_page');
}
);

Post as a guest















Required, but never shown

























2 Answers
2






active

oldest

votes








2 Answers
2






active

oldest

votes









active

oldest

votes






active

oldest

votes









0














Did you stage these files? Try git add <file_name> and then committing and pushing them to remote.






share|improve this answer
























  • Thank you very much.It solved my problem

    – kemal
    Jan 3 at 6:14
















0














Did you stage these files? Try git add <file_name> and then committing and pushing them to remote.






share|improve this answer
























  • Thank you very much.It solved my problem

    – kemal
    Jan 3 at 6:14














0












0








0







Did you stage these files? Try git add <file_name> and then committing and pushing them to remote.






share|improve this answer













Did you stage these files? Try git add <file_name> and then committing and pushing them to remote.







share|improve this answer












share|improve this answer



share|improve this answer










answered Jan 3 at 6:05









nbirlanbirla

43828




43828













  • Thank you very much.It solved my problem

    – kemal
    Jan 3 at 6:14



















  • Thank you very much.It solved my problem

    – kemal
    Jan 3 at 6:14

















Thank you very much.It solved my problem

– kemal
Jan 3 at 6:14





Thank you very much.It solved my problem

– kemal
Jan 3 at 6:14













0














Have you checked .gitignore file ? or run command to see which files are being tracked




git ls-tree -r branchname --name-only







share|improve this answer
























  • I installed my .gitignore file.I use intellij Idea to send files to github

    – kemal
    Jan 3 at 6:03


















0














Have you checked .gitignore file ? or run command to see which files are being tracked




git ls-tree -r branchname --name-only







share|improve this answer
























  • I installed my .gitignore file.I use intellij Idea to send files to github

    – kemal
    Jan 3 at 6:03
















0












0








0







Have you checked .gitignore file ? or run command to see which files are being tracked




git ls-tree -r branchname --name-only







share|improve this answer













Have you checked .gitignore file ? or run command to see which files are being tracked




git ls-tree -r branchname --name-only








share|improve this answer












share|improve this answer



share|improve this answer










answered Jan 3 at 5:48









Aashish KarkiAashish Karki

513




513













  • I installed my .gitignore file.I use intellij Idea to send files to github

    – kemal
    Jan 3 at 6:03





















  • I installed my .gitignore file.I use intellij Idea to send files to github

    – kemal
    Jan 3 at 6:03



















I installed my .gitignore file.I use intellij Idea to send files to github

– kemal
Jan 3 at 6:03







I installed my .gitignore file.I use intellij Idea to send files to github

– kemal
Jan 3 at 6:03




















draft saved

draft discarded




















































Thanks for contributing an answer to Stack Overflow!


  • Please be sure to answer the question. Provide details and share your research!

But avoid



  • Asking for help, clarification, or responding to other answers.

  • Making statements based on opinion; back them up with references or personal experience.


To learn more, see our tips on writing great answers.




draft saved


draft discarded














StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f54016926%2fmy-github-repo-does-not-accept-some-js-files%23new-answer', 'question_page');
}
);

Post as a guest















Required, but never shown





















































Required, but never shown














Required, but never shown












Required, but never shown







Required, but never shown

































Required, but never shown














Required, but never shown












Required, but never shown







Required, but never shown







Popular posts from this blog

Can a sorcerer learn a 5th-level spell early by creating spell slots using the Font of Magic feature?

ts Property 'filter' does not exist on type '{}'

Notepad++ export/extract a list of installed plugins